From a7f9f14d3623c5b94cc787c50d8d35f1bab7b636 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Fri, 21 Jun 2019 20:05:30 +0200 Subject: [PATCH] Give syncing in assumevalid.py more time --- test/functional/assumevalid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/assumevalid.py b/test/functional/assumevalid.py index 4049add2c7..7a1980e3f8 100755 --- a/test/functional/assumevalid.py +++ b/test/functional/assumevalid.py @@ -201,7 +201,7 @@ class AssumeValidTest(BitcoinTestFramework): for i in range(200): node1.send_message(msg_block(self.blocks[i])) # Syncing so many blocks can take a while on slow systems. Give it plenty of time to sync. - node1.sync_with_ping(120) + node1.sync_with_ping(300) assert_equal(self.nodes[1].getblock(self.nodes[1].getbestblockhash())['height'], 200) # Send blocks to node2. Block 102 will be rejected.