aboutsummaryrefslogtreecommitdiff
path: root/test/functional/mempool_accept.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/mempool_accept.py
parent9d85c03620bf660cfa7d13080f5c0b191579cbc3 (diff)
downloadbitcoin-faf4315c88d8c81c2ff84870bc81aef3cf719816.tar.xz
test: Return dict in MiniWallet::send_to
Diffstat (limited to 'test/functional/mempool_accept.py')
-rwxr-xr-xtest/functional/mempool_accept.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_accept.py b/test/functional/mempool_accept.py
index 362b407062..737a8d0a2e 100755
--- a/test/functional/mempool_accept.py
+++ b/test/functional/mempool_accept.py
@@ -350,7 +350,7 @@ class MempoolAcceptanceTest(BitcoinTestFramework):
self.log.info('A tiny transaction(in non-witness bytes) that is disallowed')
tx = CTransaction()
- tx.vin.append(CTxIn(COutPoint(int(seed_tx[0], 16), seed_tx[1]), b"", SEQUENCE_FINAL))
+ tx.vin.append(CTxIn(COutPoint(int(seed_tx["txid"], 16), seed_tx["sent_vout"]), b"", SEQUENCE_FINAL))
tx.wit.vtxinwit = [CTxInWitness()]
tx.wit.vtxinwit[0].scriptWitness.stack = [CScript([OP_TRUE])]
tx.vout.append(CTxOut(0, CScript([OP_RETURN] + ([OP_0] * (MIN_PADDING - 2)))))