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/reindex.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/reindex.py')
-rwxr-xr-x | qa/rpc-tests/reindex.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qa/rpc-tests/reindex.py b/qa/rpc-tests/reindex.py index a3f4d6ea01..abbbb10336 100755 --- a/qa/rpc-tests/reindex.py +++ b/qa/rpc-tests/reindex.py @@ -12,9 +12,10 @@ import time class ReindexTest(BitcoinTestFramework): - def setup_chain(self): - print("Initializing test directory "+self.options.tmpdir) - initialize_chain_clean(self.options.tmpdir, 1) + def __init__(self): + super().__init__() + self.setup_clean_chain = True + self.num_nodes = 1 def setup_network(self): self.nodes = [] |