rpc: fix off by one in get_height

pull/200/head
moneromooo-monero 5 years ago
parent 9c77dbf376
commit e78cea74bd
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -204,6 +204,7 @@ namespace cryptonote
crypto::hash 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.status = CORE_RPC_STATUS_OK;
return true;

Loading…
Cancel
Save