Merge pull request #5428

f3425f8d rpc.getblocktemplate: set reserved_offset to zero when reserve_size==0 (stoffu)
pull/5430/head
Riccardo Spagni 5 years ago
commit 45e1f7c292
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -1296,7 +1296,10 @@ namespace cryptonote
LOG_ERROR("Failed to find tx pub key in blockblob");
return false;
}
res.reserved_offset += sizeof(tx_pub_key) + 2; //2 bytes: tag for TX_EXTRA_NONCE(1 byte), counter in TX_EXTRA_NONCE(1 byte)
if (req.reserve_size)
res.reserved_offset += sizeof(tx_pub_key) + 2; //2 bytes: tag for TX_EXTRA_NONCE(1 byte), counter in TX_EXTRA_NONCE(1 byte)
else
res.reserved_offset = 0;
if(res.reserved_offset + req.reserve_size > block_blob.size())
{
error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR;

Loading…
Cancel
Save