diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-04-27 13:32:23 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-04-28 08:16:29 +0200 |
commit | faa51ef4d33034f8c14cfd18f1c01c90883a1bb4 (patch) | |
tree | fc99d13079acbab38be723e68b3391b73371081f /test/functional/p2p_addr_relay.py | |
parent | fa37116c820f6a84642d57ce709a5977fd5616c4 (diff) |
test: Fix intermittent issue in p2p_addr_relay.py
Diffstat (limited to 'test/functional/p2p_addr_relay.py')
-rwxr-xr-x | test/functional/p2p_addr_relay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p_addr_relay.py b/test/functional/p2p_addr_relay.py index d07c1c2d76..87297989ba 100755 --- a/test/functional/p2p_addr_relay.py +++ b/test/functional/p2p_addr_relay.py @@ -82,7 +82,7 @@ class AddrTest(BitcoinTestFramework): self.mocktime += 5 * 60 self.nodes[0].setmocktime(self.mocktime) for peer in receivers: - peer.sync_with_ping() + peer.sync_send_with_ping() def oversized_addr_test(self): self.log.info('Send an addr message that is too large') |