diff options
author | monero-project <sempre.amaro@gmail.com> | 2014-06-05 10:11:07 -0400 |
---|---|---|
committer | monero-project <sempre.amaro@gmail.com> | 2014-06-05 10:11:07 -0400 |
commit | 3162fcb70fa609eebfcb1cac004041fbca37a7cc (patch) | |
tree | 74041dbb25e23a7b65cc6a32d6d3489c114d8e4c /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #23 from paybee/master (diff) | |
parent | Added static_cast to hshd.current_height (diff) | |
download | monero-3162fcb70fa609eebfcb1cac004041fbca37a7cc.tar.xz |
Merge pull request #24 from Neozaru/master
'getinfo' daemon HTTP-RPC returns 'target_height' for progress estimation
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index e4a7c9773..03af66f4f 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -81,6 +81,7 @@ namespace cryptonote { CHECK_CORE_BUSY(); res.height = m_core.get_current_blockchain_height(); + res.target_height = m_core.get_target_blockchain_height(); res.difficulty = m_core.get_blockchain_storage().get_difficulty_for_next_block(); res.tx_count = m_core.get_blockchain_storage().get_total_transactions() - res.height; //without coinbase res.tx_pool_size = m_core.get_pool_transactions_count(); |