mirror of
https://git.wownero.com/wowlet/wowlet-backend.git
synced 2024-08-15 01:03:13 +00:00
rpc_nodes: widen allowed heights
This commit is contained in:
parent
d8dd87b056
commit
26571d306e
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class RPCNodeCheckTask(FeatherTask):
|
||||||
|
|
||||||
# popularity contest
|
# popularity contest
|
||||||
common_height = popularity_contest([z['height'] for z in data])
|
common_height = popularity_contest([z['height'] for z in data])
|
||||||
valid_heights = range(common_height, common_height - allowed_offset, -1)
|
valid_heights = range(common_height + allowed_offset, common_height - allowed_offset, -1)
|
||||||
|
|
||||||
data = list(map(lambda _node: _node if _node['height'] in valid_heights
|
data = list(map(lambda _node: _node if _node['height'] in valid_heights
|
||||||
else self._bad_node(**_node), data))
|
else self._bad_node(**_node), data))
|
||||||
|
|
Loading…
Reference in a new issue