aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/pruning.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-05-20 15:16:51 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-05-20 15:26:22 +0200
commit8844ef15ded02d5ed86fb95aaf251235fcef2396 (patch)
tree9298733439413cf4475d9b5a4da43c359945f825 /qa/rpc-tests/pruning.py
parent1b87e5b5b184a0a6c683eda23b36393822b57f03 (diff)
parentfad68f751aff024bcbc1587640c3591aab5a80f7 (diff)
downloadbitcoin-8844ef15ded02d5ed86fb95aaf251235fcef2396.tar.xz
Merge #8056: [qa] Remove hardcoded "4 nodes" from test_framework
fad68f7 [qa] Reduce node count for some tests (MarcoFalke) fac9349 [qa] Remove hardcoded "4 nodes" from test_framework (MarcoFalke)
Diffstat (limited to 'qa/rpc-tests/pruning.py')
-rwxr-xr-xqa/rpc-tests/pruning.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/qa/rpc-tests/pruning.py b/qa/rpc-tests/pruning.py
index eac2272db2..d225e29b50 100755
--- a/qa/rpc-tests/pruning.py
+++ b/qa/rpc-tests/pruning.py
@@ -20,14 +20,14 @@ def calc_usage(blockdir):
class PruneTest(BitcoinTestFramework):
def __init__(self):
+ super().__init__()
+ self.setup_clean_chain = True
+ self.num_nodes = 3
+
self.utxo = []
self.address = ["",""]
self.txouts = gen_return_txouts()
- def setup_chain(self):
- print("Initializing test directory "+self.options.tmpdir)
- initialize_chain_clean(self.options.tmpdir, 3)
-
def setup_network(self):
self.nodes = []
self.is_network_split = False