We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dfd64f commit 0b94e49Copy full SHA for 0b94e49
test/functional/bumpfee.py
@@ -265,11 +265,11 @@ def test_locked_wallet_fails(rbf_node, dest_address):
265
266
267
def spend_one_input(node, dest_address):
268
- input = dict(
+ tx_input = dict(
269
sequence=BIP125_SEQUENCE_NUMBER, **next(u for u in node.listunspent() if u["amount"] == Decimal("0.00100000")))
270
rawtx = node.createrawtransaction(
271
- [input], {dest_address: Decimal("0.00050000"),
272
- node.getrawchangeaddress(): Decimal("0.00049000")})
+ [tx_input], {dest_address: Decimal("0.00050000"),
+ node.getrawchangeaddress(): Decimal("0.00049000")})
273
signedtx = node.signrawtransaction(rawtx)
274
txid = node.sendrawtransaction(signedtx["hex"])
275
return txid
0 commit comments