aboutsummaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-05-01 08:46:16 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-05-01 08:45:26 -0400
commitfab7ee39900d128cd305f530b643e2e62999ec74 (patch)
treee268b178cc1b11462da5c3bf524c646325176f66 /test/functional
parentfa8614aea9b8dc0f135a1221c7435014adb71c89 (diff)
downloadbitcoin-fab7ee39900d128cd305f530b643e2e62999ec74.tar.xz
test: Fix p2p_leak intermittent issue
Diffstat (limited to 'test/functional')
-rwxr-xr-xtest/functional/p2p_leak.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/functional/p2p_leak.py b/test/functional/p2p_leak.py
index 7f7430d04e..157af68203 100755
--- a/test/functional/p2p_leak.py
+++ b/test/functional/p2p_leak.py
@@ -141,12 +141,11 @@ class P2PLeakTest(BitcoinTestFramework):
assert no_verack_idlenode.unexpected_msg == False
self.log.info('Check that the version message does not leak the local address of the node')
- time_begin = int(time.time())
p2p_version_store = self.nodes[0].add_p2p_connection(P2PVersionStore())
- time_end = time.time()
ver = p2p_version_store.version_received
- assert_greater_than_or_equal(ver.nTime, time_begin)
- assert_greater_than_or_equal(time_end, ver.nTime)
+ # Check that received time is within one hour of now
+ assert_greater_than_or_equal(ver.nTime, time.time() - 3600)
+ assert_greater_than_or_equal(time.time() + 3600, ver.nTime)
assert_equal(ver.addrFrom.port, 0)
assert_equal(ver.addrFrom.ip, '0.0.0.0')
assert_equal(ver.nStartingHeight, 201)