Add special error for genesis coinbase to gettransaction
This commit is contained in:
parent
2ae7cf8ef5
commit
ee11121229
2 changed files with 9 additions and 0 deletions
|
@ -147,6 +147,11 @@ UniValue getrawtransaction(const JSONRPCRequest& request)
|
||||||
uint256 hash = ParseHashV(request.params[0], "parameter 1");
|
uint256 hash = ParseHashV(request.params[0], "parameter 1");
|
||||||
CBlockIndex* blockindex = nullptr;
|
CBlockIndex* blockindex = nullptr;
|
||||||
|
|
||||||
|
if (hash == Params().GenesisBlock().hashMerkleRoot) {
|
||||||
|
// Special exception for the genesis block coinbase transaction
|
||||||
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "The genesis block coinbase is not considered an ordinary transaction and cannot be retrieved");
|
||||||
|
}
|
||||||
|
|
||||||
// Accept either a bool (true) or a num (>=1) to indicate verbose output.
|
// Accept either a bool (true) or a num (>=1) to indicate verbose output.
|
||||||
bool fVerbose = false;
|
bool fVerbose = false;
|
||||||
if (!request.params[1].isNull()) {
|
if (!request.params[1].isNull()) {
|
||||||
|
|
|
@ -59,6 +59,10 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
self.nodes[0].generate(5)
|
self.nodes[0].generate(5)
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
|
|
||||||
|
# Test getrawtransaction on genesis block coinbase returns an error
|
||||||
|
block = self.nodes[0].getblock(self.nodes[0].getblockhash(0))
|
||||||
|
assert_raises_rpc_error(-5, "The genesis block coinbase is not considered an ordinary transaction", self.nodes[0].getrawtransaction, block['merkleroot'])
|
||||||
|
|
||||||
# Test `createrawtransaction` required parameters
|
# Test `createrawtransaction` required parameters
|
||||||
assert_raises_rpc_error(-1, "createrawtransaction", self.nodes[0].createrawtransaction)
|
assert_raises_rpc_error(-1, "createrawtransaction", self.nodes[0].createrawtransaction)
|
||||||
assert_raises_rpc_error(-1, "createrawtransaction", self.nodes[0].createrawtransaction, [])
|
assert_raises_rpc_error(-1, "createrawtransaction", self.nodes[0].createrawtransaction, [])
|
||||||
|
|
Loading…
Reference in a new issue