Skip to content

Commit 15f5fd6

Browse files
committed
qa: don't mine non standard txs in fee estimation test
We don't need dust outputs anymore. Signed-off-by: Antoine Poinsot <[email protected]>
1 parent eae52dd commit 15f5fd6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/functional/feature_fee_estimation.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,11 @@ def send_tx(node, utxo, feerate):
146146
class EstimateFeeTest(BitcoinTestFramework):
147147
def set_test_params(self):
148148
self.num_nodes = 3
149-
# mine non-standard txs (e.g. txs with "dust" outputs)
150149
# Force fSendTrickle to true (via whitelist.noban)
151150
self.extra_args = [
152-
["-acceptnonstdtxn", "-[email protected]"],
153-
["-acceptnonstdtxn", "-[email protected]", "-blockmaxweight=68000"],
154-
["-acceptnonstdtxn", "-[email protected]", "-blockmaxweight=32000"],
151+
152+
["[email protected]", "-blockmaxweight=68000"],
153+
["[email protected]", "-blockmaxweight=32000"],
155154
]
156155

157156
def skip_test_if_missing_module(self):

0 commit comments

Comments
 (0)