aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_fee_estimation.py
diff options
context:
space:
mode:
authorAntoine Poinsot <darosior@protonmail.com>2021-09-21 13:24:37 +0200
committerAntoine Poinsot <darosior@protonmail.com>2021-12-09 14:59:46 +0100
commit15f5fd62afb57ec501dc8c6706999d4c83e58414 (patch)
tree08b0a9e8fd4a0613f68846ea55bae60d8c99af9b /test/functional/feature_fee_estimation.py
parenteae52dd6abb8efb99d62d38670cea89ff1e41286 (diff)
downloadbitcoin-15f5fd62afb57ec501dc8c6706999d4c83e58414.tar.xz
qa: don't mine non standard txs in fee estimation test
We don't need dust outputs anymore. Signed-off-by: Antoine Poinsot <darosior@protonmail.com>
Diffstat (limited to 'test/functional/feature_fee_estimation.py')
-rwxr-xr-xtest/functional/feature_fee_estimation.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/functional/feature_fee_estimation.py b/test/functional/feature_fee_estimation.py
index a55068ce2f..8a8e91b2aa 100755
--- a/test/functional/feature_fee_estimation.py
+++ b/test/functional/feature_fee_estimation.py
@@ -146,12 +146,11 @@ def send_tx(node, utxo, feerate):
class EstimateFeeTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 3
- # mine non-standard txs (e.g. txs with "dust" outputs)
# Force fSendTrickle to true (via whitelist.noban)
self.extra_args = [
- ["-acceptnonstdtxn", "-whitelist=noban@127.0.0.1"],
- ["-acceptnonstdtxn", "-whitelist=noban@127.0.0.1", "-blockmaxweight=68000"],
- ["-acceptnonstdtxn", "-whitelist=noban@127.0.0.1", "-blockmaxweight=32000"],
+ ["-whitelist=noban@127.0.0.1"],
+ ["-whitelist=noban@127.0.0.1", "-blockmaxweight=68000"],
+ ["-whitelist=noban@127.0.0.1", "-blockmaxweight=32000"],
]
def skip_test_if_missing_module(self):