diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2022-07-03 16:06:56 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2022-07-03 16:30:11 +0200 |
commit | 1770be72d5eb47cae565d4ac86de5bc16f94fdd6 (patch) | |
tree | 3a7b1f481aa9060c810408c6e76abbe542a4de4a /test/functional/wallet_basic.py | |
parent | 4129c1375430dbfe8dd414868c43fceb3d091fc3 (diff) |
test: pass `dustrelayfee=0` option for tests using dust (instead of `acceptnonstdtxn=1`)
By specifying the `dustrelayfee=0` option instead of the more
generic `acceptnonstdtxn=1`, 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/wallet_basic.py')
-rwxr-xr-x | test/functional/wallet_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index a6c93ba5f9..f66fab19ac 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -25,7 +25,7 @@ class WalletTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 4 self.extra_args = [[ - "-acceptnonstdtxn=1", "-walletrejectlongchains=0" + "-dustrelayfee=0", "-walletrejectlongchains=0" ]] * self.num_nodes self.setup_clean_chain = True self.supports_cli = False |