maybe I missed this one last time

This commit is contained in:
Brannon King 2020-03-12 14:21:55 -06:00 committed by Anthony Fieroni
parent 4d3a1c45f4
commit e06ee32336

View file

@ -130,9 +130,9 @@ class EstimateFeeTest(BitcoinTestFramework):
# mine non-standard txs (e.g. txs with "dust" outputs)
# Force fSendTrickle to true (via whitelist)
self.extra_args = [
["-acceptnonstdtxn", "-whitelist=127.0.0.1", "-limitancestorcount=100"],
["-acceptnonstdtxn", "-whitelist=127.0.0.1", "-blockmaxweight=68000", "-limitancestorcount=100"],
["-acceptnonstdtxn", "-whitelist=127.0.0.1", "-blockmaxweight=32000", "-limitancestorcount=100"],
["-acceptnonstdtxn", "-whitelist=127.0.0.1", "-limitancestorcount=100", "-txindex=1"],
["-acceptnonstdtxn", "-whitelist=127.0.0.1", "-blockmaxweight=68000", "-limitancestorcount=100", "-txindex=1"],
["-acceptnonstdtxn", "-whitelist=127.0.0.1", "-blockmaxweight=32000", "-limitancestorcount=100", "-txindex=1"],
]
def skip_test_if_missing_module(self):