aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2016-07-04 18:24:32 +0200
committerMarcoFalke <[email protected]>2016-07-04 18:24:46 +0200
commit115735d547fdeade822f547eb3e8c8f9961a9b07 (patch)
treec52bdd22beeed11127e019cc3a266d8df7d919cd
parentMerge #8285: windows: Add testnet link to installer (diff)
parentTests: Increase sync_blocks() timeouts in pruning.py (diff)
downloaddiscoin-115735d547fdeade822f547eb3e8c8f9961a9b07.tar.xz
discoin-115735d547fdeade822f547eb3e8c8f9961a9b07.zip
Merge #8280: Tests: Increase sync_blocks() timeouts in pruning.py
36f1b9d Tests: Increase sync_blocks() timeouts in pruning.py (Suhas Daftuar)
-rwxr-xr-xqa/rpc-tests/pruning.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/pruning.py b/qa/rpc-tests/pruning.py
index d225e29b5..7cbe69c29 100755
--- a/qa/rpc-tests/pruning.py
+++ b/qa/rpc-tests/pruning.py
@@ -151,14 +151,14 @@ class PruneTest(BitcoinTestFramework):
print("Reconnect nodes")
connect_nodes(self.nodes[0], 1)
connect_nodes(self.nodes[2], 1)
- sync_blocks(self.nodes[0:3])
+ sync_blocks(self.nodes[0:3], timeout=120)
print("Verify height on node 2:",self.nodes[2].getblockcount())
print("Usage possibly still high bc of stale blocks in block files:", calc_usage(self.prunedir))
print("Mine 220 more blocks so we have requisite history (some blocks will be big and cause pruning of previous chain)")
self.nodes[0].generate(220) #node 0 has many large tx's in its mempool from the disconnects
- sync_blocks(self.nodes[0:3])
+ sync_blocks(self.nodes[0:3], timeout=300)
usage = calc_usage(self.prunedir)
print("Usage should be below target:", usage)