aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_pruning.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-08-01 14:37:47 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-08-01 14:37:07 -0400
commitfa5b440971a0dfdd64c1b86748a573fcd7dc65d3 (patch)
tree293c5d69fa9d0f2fb658ddd50da6b665f0175d41 /test/functional/feature_pruning.py
parentc88529a178d5ca719ebab597a4c4c3437327b2f6 (diff)
downloadbitcoin-fa5b440971a0dfdd64c1b86748a573fcd7dc65d3.tar.xz
qa: Extract rpc_timewait as test param
Also increase it for wallet_dump and wallet_groups
Diffstat (limited to 'test/functional/feature_pruning.py')
-rwxr-xr-xtest/functional/feature_pruning.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/feature_pruning.py b/test/functional/feature_pruning.py
index d400507a66..147a0904be 100755
--- a/test/functional/feature_pruning.py
+++ b/test/functional/feature_pruning.py
@@ -28,6 +28,7 @@ class PruneTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 6
+ self.rpc_timewait = 900
# Create nodes 0 and 1 to mine.
# Create node 2 to test pruning.
@@ -54,7 +55,7 @@ class PruneTest(BitcoinTestFramework):
sync_blocks(self.nodes[0:5])
def setup_nodes(self):
- self.add_nodes(self.num_nodes, self.extra_args, timewait=900)
+ self.add_nodes(self.num_nodes, self.extra_args)
self.start_nodes()
def create_big_chain(self):