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 45fe390 commit fabcd64Copy full SHA for fabcd64
test/functional/p2p_timeouts.py
@@ -72,7 +72,11 @@ def run_test(self):
72
]
73
74
with self.nodes[0].assert_debug_log(expected_msgs=expected_timeout_logs):
75
- sleep(2)
+ sleep(3)
76
+ # By now, we waited a total of 5 seconds. Off-by-two for two
77
+ # reasons:
78
+ # * The internal precision is one second
79
+ # * Account for network delay
80
assert not no_verack_node.is_connected
81
assert not no_version_node.is_connected
82
assert not no_send_node.is_connected
0 commit comments