aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2022-06-27 19:40:28 +0200
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2022-06-27 19:40:28 +0200
commitf665c6ecda854adaaa629e961b1912847b42fd34 (patch)
treea984cbb6224ef175d7cc71b84faa9dd776efc640 /test
parent2111f32f2a6998531871e7792b5208992868ba7f (diff)
downloadbitcoin-f665c6ecda854adaaa629e961b1912847b42fd34.tar.xz
test: fix failing test interface_usdt_utxocache.py
The `from_node` argument doesn't exist anymore for `MiniWallet.create_self_transfer` since PR #25435 (commit fa8421bc5bcd483a9501257073db17ff2e76eb46).
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/interface_usdt_utxocache.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/interface_usdt_utxocache.py b/test/functional/interface_usdt_utxocache.py
index 0c7f351e66..f48ff9699d 100755
--- a/test/functional/interface_usdt_utxocache.py
+++ b/test/functional/interface_usdt_utxocache.py
@@ -169,8 +169,7 @@ class UTXOCacheTracepointTest(BitcoinTestFramework):
# Create a transaction and invalidate it by changing the txid of the previous
# output to the coinbase txid of the block at height 1.
- invalid_tx = self.wallet.create_self_transfer(
- from_node=self.nodes[0])["tx"]
+ invalid_tx = self.wallet.create_self_transfer()["tx"]
invalid_tx.vin[0].prevout.hash = int(block_1_coinbase_txid, 16)
self.log.info("hooking into the utxocache:uncache tracepoint")