Merge pull request #3975

2d5921e blockchain: avoid duplicate db query for height (moneromooo-monero)
release-v0.5.1
luigi1111 6 years ago
commit 14372ca95a
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -2215,7 +2215,7 @@ bool Blockchain::find_blockchain_supplement(const std::list<crypto::hash>& qbloc
CRITICAL_REGION_LOCAL(m_blockchain_lock);
bool result = find_blockchain_supplement(qblock_ids, resp.m_block_ids, resp.start_height, resp.total_height);
resp.cumulative_difficulty = m_db->get_block_cumulative_difficulty(m_db->height() - 1);
resp.cumulative_difficulty = m_db->get_block_cumulative_difficulty(resp.total_height - 1);
return result;
}

Loading…
Cancel
Save