mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
p2p/discover: faster decay
This commit is contained in:
parent
30eb2bf406
commit
81e553f428
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue