mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
Merge #9738: gettxoutproof() should return consistent result
6294f32
gettxoutproof() should return consistent result (John Newbery)
Tree-SHA512: 1c36f78ea07a3bdde09e9494207b4372d54bcd94ed2d56e339e78281f6693e26a93e4c3123453d5c0f6e994d0069d5a1c806786c4af71864f87ea4841611c379
This commit is contained in:
commit
c94b89e90d
@ -218,9 +218,13 @@ UniValue gettxoutproof(const JSONRPCRequest& request)
|
|||||||
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found");
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found");
|
||||||
pblockindex = mapBlockIndex[hashBlock];
|
pblockindex = mapBlockIndex[hashBlock];
|
||||||
} else {
|
} else {
|
||||||
const Coin& coin = AccessByTxid(*pcoinsTip, oneTxid);
|
// Loop through txids and try to find which block they're in. Exit loop once a block is found.
|
||||||
if (!coin.IsSpent() && coin.nHeight > 0 && coin.nHeight <= chainActive.Height()) {
|
for (const auto& tx : setTxids) {
|
||||||
pblockindex = chainActive[coin.nHeight];
|
const Coin& coin = AccessByTxid(*pcoinsTip, tx);
|
||||||
|
if (!coin.IsSpent()) {
|
||||||
|
pblockindex = chainActive[coin.nHeight];
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -243,7 +247,7 @@ UniValue gettxoutproof(const JSONRPCRequest& request)
|
|||||||
if (setTxids.count(tx->GetHash()))
|
if (setTxids.count(tx->GetHash()))
|
||||||
ntxFound++;
|
ntxFound++;
|
||||||
if (ntxFound != setTxids.size())
|
if (ntxFound != setTxids.size())
|
||||||
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "(Not all) transactions not found in specified block");
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Not all transactions found in specified or retrieved block");
|
||||||
|
|
||||||
CDataStream ssMB(SER_NETWORK, PROTOCOL_VERSION | SERIALIZE_TRANSACTION_NO_WITNESS);
|
CDataStream ssMB(SER_NETWORK, PROTOCOL_VERSION | SERIALIZE_TRANSACTION_NO_WITNESS);
|
||||||
CMerkleBlock mb(block, setTxids);
|
CMerkleBlock mb(block, setTxids);
|
||||||
|
@ -39,7 +39,8 @@ class MerkleBlockTest(BitcoinTestFramework):
|
|||||||
txid1 = self.nodes[0].sendrawtransaction(self.nodes[0].signrawtransaction(tx1)["hex"])
|
txid1 = self.nodes[0].sendrawtransaction(self.nodes[0].signrawtransaction(tx1)["hex"])
|
||||||
tx2 = self.nodes[0].createrawtransaction([node0utxos.pop()], {self.nodes[1].getnewaddress(): 49.99})
|
tx2 = self.nodes[0].createrawtransaction([node0utxos.pop()], {self.nodes[1].getnewaddress(): 49.99})
|
||||||
txid2 = self.nodes[0].sendrawtransaction(self.nodes[0].signrawtransaction(tx2)["hex"])
|
txid2 = self.nodes[0].sendrawtransaction(self.nodes[0].signrawtransaction(tx2)["hex"])
|
||||||
assert_raises(JSONRPCException, self.nodes[0].gettxoutproof, [txid1])
|
# This will raise an exception because the transaction is not yet in a block
|
||||||
|
assert_raises_jsonrpc(-5, "Transaction not yet in block", self.nodes[0].gettxoutproof, [txid1])
|
||||||
|
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
blockhash = self.nodes[0].getblockhash(chain_height + 1)
|
blockhash = self.nodes[0].getblockhash(chain_height + 1)
|
||||||
@ -56,7 +57,7 @@ class MerkleBlockTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
txin_spent = self.nodes[1].listunspent(1).pop()
|
txin_spent = self.nodes[1].listunspent(1).pop()
|
||||||
tx3 = self.nodes[1].createrawtransaction([txin_spent], {self.nodes[0].getnewaddress(): 49.98})
|
tx3 = self.nodes[1].createrawtransaction([txin_spent], {self.nodes[0].getnewaddress(): 49.98})
|
||||||
self.nodes[0].sendrawtransaction(self.nodes[1].signrawtransaction(tx3)["hex"])
|
txid3 = self.nodes[0].sendrawtransaction(self.nodes[1].signrawtransaction(tx3)["hex"])
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
|
|
||||||
@ -64,17 +65,21 @@ class MerkleBlockTest(BitcoinTestFramework):
|
|||||||
txid_unspent = txid1 if txin_spent["txid"] != txid1 else txid2
|
txid_unspent = txid1 if txin_spent["txid"] != txid1 else txid2
|
||||||
|
|
||||||
# We can't find the block from a fully-spent tx
|
# We can't find the block from a fully-spent tx
|
||||||
assert_raises(JSONRPCException, self.nodes[2].gettxoutproof, [txid_spent])
|
assert_raises_jsonrpc(-5, "Transaction not yet in block", self.nodes[2].gettxoutproof, [txid_spent])
|
||||||
# ...but we can if we specify the block
|
# We can get the proof if we specify the block
|
||||||
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid_spent], blockhash)), [txid_spent])
|
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid_spent], blockhash)), [txid_spent])
|
||||||
# ...or if the first tx is not fully-spent
|
# We can't get the proof if we specify a non-existent block
|
||||||
|
assert_raises_jsonrpc(-5, "Block not found", self.nodes[2].gettxoutproof, [txid_spent], "00000000000000000000000000000000")
|
||||||
|
# We can get the proof if the transaction is unspent
|
||||||
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid_unspent])), [txid_unspent])
|
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid_unspent])), [txid_unspent])
|
||||||
try:
|
# We can get the proof if we provide a list of transactions and one of them is unspent. The ordering of the list should not matter.
|
||||||
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid1, txid2])), txlist)
|
assert_equal(sorted(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid1, txid2]))), sorted(txlist))
|
||||||
except JSONRPCException:
|
assert_equal(sorted(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid2, txid1]))), sorted(txlist))
|
||||||
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid2, txid1])), txlist)
|
# We can always get a proof if we have a -txindex
|
||||||
# ...or if we have a -txindex
|
|
||||||
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[3].gettxoutproof([txid_spent])), [txid_spent])
|
assert_equal(self.nodes[2].verifytxoutproof(self.nodes[3].gettxoutproof([txid_spent])), [txid_spent])
|
||||||
|
# We can't get a proof if we specify transactions from different blocks
|
||||||
|
assert_raises_jsonrpc(-5, "Not all transactions found in specified or retrieved block", self.nodes[2].gettxoutproof, [txid1, txid3])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
MerkleBlockTest().main()
|
MerkleBlockTest().main()
|
||||||
|
Loading…
Reference in New Issue
Block a user