Skip to content

Commit f665c6e

Browse files
committed
test: fix failing test interface_usdt_utxocache.py
The `from_node` argument doesn't exist anymore for `MiniWallet.create_self_transfer` since PR bitcoin#25435 (commit fa8421b).
1 parent 2111f32 commit f665c6e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/functional/interface_usdt_utxocache.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,7 @@ def test_uncache(self):
169169

170170
# Create a transaction and invalidate it by changing the txid of the previous
171171
# output to the coinbase txid of the block at height 1.
172-
invalid_tx = self.wallet.create_self_transfer(
173-
from_node=self.nodes[0])["tx"]
172+
invalid_tx = self.wallet.create_self_transfer()["tx"]
174173
invalid_tx.vin[0].prevout.hash = int(block_1_coinbase_txid, 16)
175174

176175
self.log.info("hooking into the utxocache:uncache tracepoint")

0 commit comments

Comments
 (0)