Skip to content

Commit

Permalink
daemon: request no PoW hashes we don't need when asking for blocks
Browse files Browse the repository at this point in the history
This fixes the horrendous slowdown in bc_dyn_stats
  • Loading branch information
moneromooo-monero committed Sep 5, 2018
1 parent fad88e1 commit e611728
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/daemon/rpc_command_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,7 @@ bool t_rpc_command_executor::print_blockchain_info(uint64_t start_block_index, u

req.start_height = start_block_index;
req.end_height = end_block_index;
req.fill_pow_hash = false;

std::string fail_message = "Unsuccessful";

Expand Down Expand Up @@ -1743,6 +1744,7 @@ bool t_rpc_command_executor::print_blockchain_dynamic_stats(uint64_t nblocks)

bhreq.start_height = ires.height - nblocks;
bhreq.end_height = ires.height - 1;
bhreq.fill_pow_hash = false;
if (m_is_rpc)
{
if (!m_rpc_client->json_rpc_request(bhreq, bhres, "getblockheadersrange", fail_message.c_str()))
Expand Down

0 comments on commit e611728

Please sign in to comment.