mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: fix off by one in get_height
This commit is contained in:
parent
9c77dbf376
commit
e78cea74bd
1 changed files with 1 additions and 0 deletions
|
@ -204,6 +204,7 @@ namespace cryptonote
|
||||||
|
|
||||||
crypto::hash hash;
|
crypto::hash hash;
|
||||||
m_core.get_blockchain_top(res.height, hash);
|
m_core.get_blockchain_top(res.height, hash);
|
||||||
|
++res.height; // block height to chain height
|
||||||
res.hash = string_tools::pod_to_hex(hash);
|
res.hash = string_tools::pod_to_hex(hash);
|
||||||
res.status = CORE_RPC_STATUS_OK;
|
res.status = CORE_RPC_STATUS_OK;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue