mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-24 13:31:38 +02:00
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>
This commit is contained in:
@@ -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):
|
||||
|
Reference in New Issue
Block a user