diff options
| author | Suhas Daftuar <[email protected]> | 2017-01-25 09:30:38 -0500 |
|---|---|---|
| committer | Suhas Daftuar <[email protected]> | 2017-01-25 10:21:37 -0500 |
| commit | 2f10f06196ace64c549172f9ab081d28115228d5 (patch) | |
| tree | c45c9bf9835750d6095898b01fe63935fe9a8ac5 | |
| parent | Merge #9416: travis: make distdir before make (diff) | |
| download | discoin-2f10f06196ace64c549172f9ab081d28115228d5.tar.xz discoin-2f10f06196ace64c549172f9ab081d28115228d5.zip | |
qa: Increase a sync_blocks timeout in pruning.py
| -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 25f077900..e740127d3 100755 --- a/qa/rpc-tests/pruning.py +++ b/qa/rpc-tests/pruning.py @@ -314,7 +314,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"]) |