diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2022-06-29 17:51:39 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2022-06-29 18:05:59 +0200 |
commit | 475aae846e71e355e8f70c0a1857339b1124bcc0 (patch) | |
tree | 90d9e9b163ecac9cd2aa4675e228a7ccd081fd0c /test/functional/mempool_limit.py | |
parent | b1ba3ed155e89fb6e30237cba8bc8028c7906830 (diff) |
test: pass `datacarriersize` option for tests using large outputs (instead of `acceptnonstdtxn`)
By specifying the `datacarriersize` option instead of the more
generic `acceptnonstdtxn`, we can be more specific about what
part of the transaction is non-standard and can be sure that all
other aspects follow the standard policy.
Diffstat (limited to 'test/functional/mempool_limit.py')
-rwxr-xr-x | test/functional/mempool_limit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_limit.py b/test/functional/mempool_limit.py index e92f73304b..7080662b49 100755 --- a/test/functional/mempool_limit.py +++ b/test/functional/mempool_limit.py @@ -23,7 +23,7 @@ class MempoolLimitTest(BitcoinTestFramework): self.setup_clean_chain = True self.num_nodes = 1 self.extra_args = [[ - "-acceptnonstdtxn=1", + "-datacarriersize=100000", "-maxmempool=5", "-spendzeroconfchange=0", ]] |