reduce persistent peer max

(cherry picked from commit b213a2766f)
This commit is contained in:
tycho garen
2022-06-10 07:31:48 -04:00
parent cee254e695
commit 45ad693b23
+1 -1
View File
@@ -42,7 +42,7 @@ const (
type PeerScore int
const (
PeerScorePersistent PeerScore = math.MaxInt // persistent peers
PeerScorePersistent PeerScore = math.MaxInt16 // persistent peers
MaxPeerScoreNotPersistent PeerScore = PeerScorePersistent - 1
)