Merge pull request #5421

e78cea74 rpc: fix off by one in get_height (moneromooo-monero)
release-v0.6.1.2
Riccardo Spagni 5 years ago
commit e89aa2ec56
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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