From 7fea5645e2e9da312d2b02a1e22087f4b9aba1ce Mon Sep 17 00:00:00 2001 From: Neozaru Date: Wed, 4 Jun 2014 22:50:13 +0200 Subject: 'getinfo' daemon HTTP-RPC returns 'target_height' for progress estimations --- src/rpc/core_rpc_server.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/rpc/core_rpc_server.cpp') 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(); -- cgit v1.2.3