Don't update expired node if have enough nodes in that stream
This commit is contained in:
parent
7558f74ab6
commit
d968a7b99b
|
@ -136,6 +136,9 @@ def addKnownNode(stream, peer, lastseen=None, is_self=False):
|
|||
except KeyError:
|
||||
pass
|
||||
except TypeError:
|
||||
# don't update expired node if have enough nodes in that stream
|
||||
if len(knownNodes[stream]) > 64:
|
||||
return
|
||||
rating = -0.2
|
||||
else:
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue
Block a user