diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-04-24 17:55:58 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-06-21 16:45:16 -0400 |
commit | fa89badf887dcc01e5bdece248b5e7d234fee227 (patch) | |
tree | 67297d1686f89e7f202979cdda735132f9a65bdf /test/functional/mempool_limit.py | |
parent | fa9b4191609c3ef75e69d391eb91e4d5c1e0bcf5 (diff) |
test: Require standard txs in regtest
Diffstat (limited to 'test/functional/mempool_limit.py')
-rwxr-xr-x | test/functional/mempool_limit.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/functional/mempool_limit.py b/test/functional/mempool_limit.py index 351b27e94a..edf2069933 100755 --- a/test/functional/mempool_limit.py +++ b/test/functional/mempool_limit.py @@ -13,7 +13,11 @@ class MempoolLimitTest(BitcoinTestFramework): def set_test_params(self): self.setup_clean_chain = True self.num_nodes = 1 - self.extra_args = [["-maxmempool=5", "-spendzeroconfchange=0"]] + self.extra_args = [[ + "-acceptnonstdtxn=1", + "-maxmempool=5", + "-spendzeroconfchange=0", + ]] def skip_test_if_missing_module(self): self.skip_if_no_wallet() |