@@ -128,10 +128,11 @@ class EstimateFeeTest(BitcoinTestFramework):
128
128
def set_test_params (self ):
129
129
self .num_nodes = 3
130
130
# mine non-standard txs (e.g. txs with "dust" outputs)
131
+ # Force fSendTrickle to true (via whitelist)
131
132
self .extra_args = [
132
- ["-acceptnonstdtxn" , "-maxorphantx=1000" , "- whitelist=127.0.0.1" ],
133
- ["-acceptnonstdtxn" , "-blockmaxweight=68000 " , "-maxorphantx=1000 " ],
134
- ["-acceptnonstdtxn" , "-blockmaxweight=32000 " , "-maxorphantx=1000 " ],
133
+ ["-acceptnonstdtxn" , "-whitelist=127.0.0.1" ],
134
+ ["-acceptnonstdtxn" , "-whitelist=127.0.0.1 " , "-blockmaxweight=68000 " ],
135
+ ["-acceptnonstdtxn" , "-whitelist=127.0.0.1 " , "-blockmaxweight=32000 " ],
135
136
]
136
137
137
138
def skip_test_if_missing_module (self ):
@@ -168,9 +169,9 @@ def transact_and_mine(self, numblocks, mining_node):
168
169
self .memutxo , Decimal ("0.005" ), min_fee , min_fee )
169
170
tx_kbytes = (len (txhex ) // 2 ) / 1000.0
170
171
self .fees_per_kb .append (float (fee ) / tx_kbytes )
171
- self .sync_mempools (self . nodes [ 0 : 3 ], wait = .1 )
172
+ self .sync_mempools (wait = .1 )
172
173
mined = mining_node .getblock (mining_node .generate (1 )[0 ], True )["tx" ]
173
- self .sync_blocks (self . nodes [ 0 : 3 ], wait = .1 )
174
+ self .sync_blocks (wait = .1 )
174
175
# update which txouts are confirmed
175
176
newmem = []
176
177
for utx in self .memutxo :
0 commit comments