aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_txoutproof.py
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2020-08-31 16:14:50 +0200
committerMarcoFalke <falke.marco@gmail.com>2020-09-09 11:27:35 +0200
commitfaf251d854e3a670533ea3e9087e82c92f3ae533 (patch)
treee72462eda1b0cf2e4db6238b46893b51339a72a7 /test/functional/rpc_txoutproof.py
parentfaf5eb45c4a08fbfd9a8c12534bca8adfe756ef2 (diff)
downloadbitcoin-faf251d854e3a670533ea3e9087e82c92f3ae533.tar.xz
test: gettxoutproof duplicate txid
Diffstat (limited to 'test/functional/rpc_txoutproof.py')
-rwxr-xr-xtest/functional/rpc_txoutproof.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/rpc_txoutproof.py b/test/functional/rpc_txoutproof.py
index 1699d36cfa..93fb62c5d6 100755
--- a/test/functional/rpc_txoutproof.py
+++ b/test/functional/rpc_txoutproof.py
@@ -79,6 +79,8 @@ class MerkleBlockTest(BitcoinTestFramework):
assert_raises_rpc_error(-5, "Not all transactions found in specified or retrieved block", self.nodes[0].gettxoutproof, [txid1, txid3])
# Test empty list
assert_raises_rpc_error(-5, "Transaction not yet in block", self.nodes[0].gettxoutproof, [])
+ # Test duplicate txid
+ assert_raises_rpc_error(-8, 'Invalid parameter, duplicated txid', self.nodes[0].gettxoutproof, [txid1, txid1])
# Now we'll try tweaking a proof.
proof = self.nodes[1].gettxoutproof([txid1, txid2])