mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 15:37:59 -05:00
core_rpc_server: return ID of submitted block
This commit is contained in:
parent
0a1eaf26f9
commit
e8cac61f4b
3 changed files with 17 additions and 2 deletions
|
|
@ -2189,7 +2189,8 @@ namespace cryptonote
|
|||
// Fixing of high orphan issue for most pools
|
||||
// Thanks Boolberry!
|
||||
block b;
|
||||
if(!parse_and_validate_block_from_blob(blockblob, b))
|
||||
crypto::hash blk_id;
|
||||
if(!parse_and_validate_block_from_blob(blockblob, b, blk_id))
|
||||
{
|
||||
error_resp.code = CORE_RPC_ERROR_CODE_WRONG_BLOCKBLOB;
|
||||
error_resp.message = "Wrong block blob";
|
||||
|
|
@ -2212,6 +2213,7 @@ namespace cryptonote
|
|||
error_resp.message = "Block not accepted";
|
||||
return false;
|
||||
}
|
||||
res.block_id = epee::string_tools::pod_to_hex(blk_id);
|
||||
res.status = CORE_RPC_STATUS_OK;
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue