diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-08-08 14:30:09 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-08-08 14:29:19 -0400 |
commit | fa31ca0c22b35beaceaf131b8f598280abdfd58d (patch) | |
tree | 1d065c1917f17c836b346dda97d8a70a91556eaf /test/functional/mempool_reorg.py | |
parent | df9f71274645a917e2578c52a1c59745bce8112d (diff) |
qa: Remove redundant checkmempool/checkblockindex extra_args
Diffstat (limited to 'test/functional/mempool_reorg.py')
-rwxr-xr-x | test/functional/mempool_reorg.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/mempool_reorg.py b/test/functional/mempool_reorg.py index fc4f6d6a52..f09bc3e2c0 100755 --- a/test/functional/mempool_reorg.py +++ b/test/functional/mempool_reorg.py @@ -11,11 +11,10 @@ that spend (directly or indirectly) coinbase transactions. from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * -# Create one-input, one-output, no-fee transaction: + class MempoolCoinbaseTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 2 - self.extra_args = [["-checkmempool"]] * 2 alert_filename = None # Set by setup_network |