mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: fixed typo in JSON command error response message
This commit is contained in:
parent
215651cbb3
commit
9a85669724
1 changed files with 1 additions and 1 deletions
|
@ -1090,7 +1090,7 @@ namespace cryptonote
|
||||||
{
|
{
|
||||||
error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR;
|
error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR;
|
||||||
error_resp.message = "Internal error: failed to create block template";
|
error_resp.message = "Internal error: failed to create block template";
|
||||||
LOG_ERROR("Failed to tx pub key in coinbase extra");
|
LOG_ERROR("Failed to get tx pub key in coinbase extra");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
res.reserved_offset = slow_memmem((void*)block_blob.data(), block_blob.size(), &tx_pub_key, sizeof(tx_pub_key));
|
res.reserved_offset = slow_memmem((void*)block_blob.data(), block_blob.size(), &tx_pub_key, sizeof(tx_pub_key));
|
||||||
|
|
Loading…
Reference in a new issue