mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
p2p/discover: make livenessChecks uint
This commit is contained in:
parent
e4aabbb8b8
commit
4bd7767bfe
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ import (
|
||||||
type node struct {
|
type node struct {
|
||||||
enode.Node
|
enode.Node
|
||||||
addedAt time.Time // time when the node was added to the table
|
addedAt time.Time // time when the node was added to the table
|
||||||
livenessChecks int // how often liveness was checked
|
livenessChecks uint // how often liveness was checked
|
||||||
}
|
}
|
||||||
|
|
||||||
type encPubkey [64]byte
|
type encPubkey [64]byte
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue