p2p/discover: faster decay

This commit is contained in:
Felix Lange 2024-04-20 10:57:14 +02:00
parent 30eb2bf406
commit 81e553f428

View file

@ -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 {