aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-04-15 09:22:50 +0200
committerRiccardo Spagni <ric@spagni.net>2019-04-15 09:22:50 +0200
commite89aa2ec5664c0eff0aa73a29015f12a70fd380f (patch)
treebbf7f3f20b218db2c73834f065bd63930b10007e /src
parentMerge pull request #5417 (diff)
parentrpc: fix off by one in get_height (diff)
downloadmonero-e89aa2ec5664c0eff0aa73a29015f12a70fd380f.tar.xz
Merge pull request #5421
e78cea74 rpc: fix off by one in get_height (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r--src/rpc/core_rpc_server.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp
index bd1455c43..39a8b4745 100644
--- a/src/rpc/core_rpc_server.cpp
+++ b/src/rpc/core_rpc_server.cpp
@@ -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;