diff options
| author | MarcoFalke <[email protected]> | 2017-01-26 01:12:09 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-01-26 01:12:11 +0100 |
| commit | f89502306dcf6393a2c7b0efbb0fa728fc582137 (patch) | |
| tree | 1419baf1fc3ff231632bcd3962caa7df39be496b | |
| parent | Merge #9624: [Trivial] fix logging typo in FlushStateToDisk() (diff) | |
| parent | qa: Increase a sync_blocks timeout in pruning.py (diff) | |
| download | discoin-f89502306dcf6393a2c7b0efbb0fa728fc582137.tar.xz discoin-f89502306dcf6393a2c7b0efbb0fa728fc582137.zip | |
Merge #9628: qa: Increase a sync_blocks timeout in pruning.py
2f10f06 qa: Increase a sync_blocks timeout in pruning.py (Suhas Daftuar)
| -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 05e72e607..60a1a86fa 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"]) |