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/txn_clone.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/txn_clone.py')
-rwxr-xr-x | qa/rpc-tests/txn_clone.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qa/rpc-tests/txn_clone.py b/qa/rpc-tests/txn_clone.py index 5710c29aa6..22f850ece6 100755 --- a/qa/rpc-tests/txn_clone.py +++ b/qa/rpc-tests/txn_clone.py @@ -12,6 +12,11 @@ from test_framework.util import * class TxnMallTest(BitcoinTestFramework): + def __init__(self): + super().__init__() + self.num_nodes = 4 + self.setup_clean_chain = False + def add_options(self, parser): parser.add_option("--mineblock", dest="mine_block", default=False, action="store_true", help="Test double-spend of 1-confirmed transaction") |