diff options
author | AnythingTechPro <anythingtechpro@gmail.com> | 2018-10-04 22:12:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 22:12:53 -0400 |
commit | 9a856697246f245795f8d8e18f635237c80f64c8 (patch) | |
tree | 434ef1f6b0be554692c34981807ca36756e8388c | |
parent | Merge pull request #4485 (diff) | |
download | monero-9a856697246f245795f8d8e18f635237c80f64c8.tar.xz |
rpc: fixed typo in JSON command error response message
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index be511a2d2..d8f556d3e 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -1090,7 +1090,7 @@ namespace cryptonote { error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR; 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; } res.reserved_offset = slow_memmem((void*)block_blob.data(), block_blob.size(), &tx_pub_key, sizeof(tx_pub_key)); |