aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_rbf.py
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-05-12 15:27:05 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-05-12 15:26:50 +0200
commitfaf4315c88d8c81c2ff84870bc81aef3cf719816 (patch)
tree8d36325da5b63b959614529d1523f35a6bfe6a13 /test/functional/feature_rbf.py
parent9d85c03620bf660cfa7d13080f5c0b191579cbc3 (diff)
downloadbitcoin-faf4315c88d8c81c2ff84870bc81aef3cf719816.tar.xz
test: Return dict in MiniWallet::send_to
Diffstat (limited to 'test/functional/feature_rbf.py')
-rwxr-xr-xtest/functional/feature_rbf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py
index 947d2e8273..c5eeaf66e0 100755
--- a/test/functional/feature_rbf.py
+++ b/test/functional/feature_rbf.py
@@ -93,7 +93,7 @@ class ReplaceByFeeTest(BitcoinTestFramework):
confirmed - txout created will be confirmed in the blockchain;
unconfirmed otherwise.
"""
- txid, n = self.wallet.send_to(from_node=node, scriptPubKey=scriptPubKey or self.wallet.get_scriptPubKey(), amount=amount)
+ tx = self.wallet.send_to(from_node=node, scriptPubKey=scriptPubKey or self.wallet.get_scriptPubKey(), amount=amount)
if confirmed:
mempool_size = len(node.getrawmempool())
@@ -105,7 +105,7 @@ class ReplaceByFeeTest(BitcoinTestFramework):
assert new_size < mempool_size
mempool_size = new_size
- return self.wallet.get_utxo(txid=txid, vout=n)
+ return self.wallet.get_utxo(txid=tx["txid"], vout=tx["sent_vout"])
def test_simple_doublespend(self):
"""Simple doublespend"""