From 81e553f428f226092eda4917f8f6c5d8a70a5fe3 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Sat, 20 Apr 2024 10:57:14 +0200 Subject: [PATCH] p2p/discover: faster decay --- p2p/discover/table_reval.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/discover/table_reval.go b/p2p/discover/table_reval.go index d1dc68c90e37..3dcc5fba05e6 100644 --- a/p2p/discover/table_reval.go +++ b/p2p/discover/table_reval.go @@ -134,7 +134,7 @@ func (tr *tableRevalidation) handleResponse(tab *Table, resp revalidationRespons if !resp.didRespond { // Revalidation failed. - n.livenessChecks /= 3 + n.livenessChecks /= 5 if n.livenessChecks <= 0 { tab.deleteInBucket(b, n.ID()) } else {