diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-05-20 15:16:51 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-05-20 15:26:22 +0200 |
commit | 8844ef15ded02d5ed86fb95aaf251235fcef2396 (patch) | |
tree | 9298733439413cf4475d9b5a4da43c359945f825 /qa/rpc-tests/wallet.py | |
parent | 1b87e5b5b184a0a6c683eda23b36393822b57f03 (diff) | |
parent | fad68f751aff024bcbc1587640c3591aab5a80f7 (diff) |
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/wallet.py')
-rwxr-xr-x | qa/rpc-tests/wallet.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qa/rpc-tests/wallet.py b/qa/rpc-tests/wallet.py index f321f5e90b..9dda712f4f 100755 --- a/qa/rpc-tests/wallet.py +++ b/qa/rpc-tests/wallet.py @@ -19,9 +19,10 @@ class WalletTest (BitcoinTestFramework): raise AssertionError("Fee of %s BTC too high! (Should be %s BTC)"%(str(fee), str(target_fee))) return curr_balance - def setup_chain(self): - print("Initializing test directory "+self.options.tmpdir) - initialize_chain_clean(self.options.tmpdir, 4) + def __init__(self): + super().__init__() + self.setup_clean_chain = True + self.num_nodes = 4 def setup_network(self, split=False): self.nodes = start_nodes(3, self.options.tmpdir) |