Merge pull request 'rpc_nodes: widen allowed heights' (#8) from tobtoht/feather-ws:widen_offsets into master

Reviewed-on: feather/feather-ws#8
master
tobtoht 3 years ago
commit a33d241015

@ -69,7 +69,7 @@ class RPCNodeCheckTask(FeatherTask):
# popularity contest
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
else self._bad_node(**_node), data))

Loading…
Cancel
Save