We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8977f0 commit e01a491Copy full SHA for e01a491
test/functional/p2p_ibd_stalling.py
@@ -82,7 +82,8 @@ def run_test(self):
82
83
# Need to wait until 1023 blocks are received - the magic total bytes number is a workaround in lack of an rpc
84
# returning the number of downloaded (but not connected) blocks.
85
- bytes_recv = 172761 if not self.options.v2transport else 169692
+ bytes_recv = 150003 if not self.options.v2transport else 146934
86
+ # Verify with: awk '/received: block/ {gsub("\\(", ""); sum+=$13} END{print sum}' log.txt
87
self.wait_until(lambda: self.total_bytes_recv_for_blocks() == bytes_recv)
88
89
self.all_sync_send_with_ping(peers)
0 commit comments