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/p2p_compactblocks.py | |
parent | fa9b4191609c3ef75e69d391eb91e4d5c1e0bcf5 (diff) |
test: Require standard txs in regtest
Diffstat (limited to 'test/functional/p2p_compactblocks.py')
-rwxr-xr-x | test/functional/p2p_compactblocks.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/p2p_compactblocks.py b/test/functional/p2p_compactblocks.py index 0994857912..eb3336bd3b 100755 --- a/test/functional/p2p_compactblocks.py +++ b/test/functional/p2p_compactblocks.py @@ -95,6 +95,9 @@ class CompactBlocksTest(BitcoinTestFramework): def set_test_params(self): self.setup_clean_chain = True self.num_nodes = 1 + self.extra_args = [[ + "-acceptnonstdtxn=1", + ]] self.utxos = [] def skip_test_if_missing_module(self): |