mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
Merge pull request #4373
4f81cd3a
rpc: add cumulative difficulty in block header data (moneromooo-monero)
This commit is contained in:
commit
629db71593
2 changed files with 3 additions and 0 deletions
|
@ -1247,6 +1247,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();
|
||||
|
|
|
@ -1120,6 +1120,7 @@ namespace cryptonote
|
|||
uint64_t depth;
|
||||
std::string hash;
|
||||
difficulty_type difficulty;
|
||||
difficulty_type cumulative_difficulty;
|
||||
uint64_t reward;
|
||||
uint64_t block_size;
|
||||
uint64_t block_weight;
|
||||
|
@ -1137,6 +1138,7 @@ namespace cryptonote
|
|||
KV_SERIALIZE(depth)
|
||||
KV_SERIALIZE(hash)
|
||||
KV_SERIALIZE(difficulty)
|
||||
KV_SERIALIZE(cumulative_difficulty)
|
||||
KV_SERIALIZE(reward)
|
||||
KV_SERIALIZE(block_size)
|
||||
KV_SERIALIZE_OPT(block_weight, (uint64_t)0)
|
||||
|
|
Loading…
Reference in a new issue