diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-01-26 01:12:09 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-01-26 01:12:11 +0100 |
commit | f89502306dcf6393a2c7b0efbb0fa728fc582137 (patch) | |
tree | 1419baf1fc3ff231632bcd3962caa7df39be496b /qa/rpc-tests | |
parent | b68f898efa095dce03533be8ac015c1faef23053 (diff) | |
parent | 2f10f06196ace64c549172f9ab081d28115228d5 (diff) |
Merge #9628: qa: Increase a sync_blocks timeout in pruning.py
2f10f06 qa: Increase a sync_blocks timeout in pruning.py (Suhas Daftuar)
Diffstat (limited to 'qa/rpc-tests')
-rwxr-xr-x | qa/rpc-tests/pruning.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/pruning.py b/qa/rpc-tests/pruning.py index 05e72e6078..60a1a86fa8 100755 --- a/qa/rpc-tests/pruning.py +++ b/qa/rpc-tests/pruning.py @@ -331,7 +331,7 @@ class PruneTest(BitcoinTestFramework): print ("Syncing node 5 to test wallet") connect_nodes(self.nodes[0], 5) nds = [self.nodes[0], self.nodes[5]] - sync_blocks(nds) + sync_blocks(nds, wait=5, timeout=300) try: stop_node(self.nodes[5],5) #stop and start to trigger rescan start_node(5, self.options.tmpdir, ["-debug=1","-prune=550"]) |