rpc: add cumulative difficulty in block header data

This commit is contained in:
moneromooo-monero
2018-09-13 12:41:36 +00:00
parent e6d36c1701
commit 4f81cd3a3c
2 changed files with 3 additions and 0 deletions

View File

@@ -1312,6 +1312,7 @@ namespace cryptonote
response.depth = m_core.get_current_blockchain_height() - height - 1;
response.hash = string_tools::pod_to_hex(hash);
response.difficulty = m_core.get_blockchain_storage().block_difficulty(height);
response.cumulative_difficulty = response.block_weight = m_core.get_blockchain_storage().get_db().get_block_cumulative_difficulty(height);
response.reward = get_block_reward(blk);
response.block_size = response.block_weight = m_core.get_blockchain_storage().get_db().get_block_weight(height);
response.num_txes = blk.tx_hashes.size();