save some database calls when getting top block hash and height

pull/200/head
moneromooo-monero 6 years ago
parent 3bbc366147
commit 8461df0405
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -3126,6 +3126,7 @@ bool Blockchain::check_fee(size_t tx_weight, uint64_t fee) const
if (version >= HF_VERSION_DYNAMIC_FEE)
{
median = m_current_block_cumul_weight_limit / 2;
const uint64_t blockchain_height = m_db->height();
already_generated_coins = blockchain_height ? m_db->get_block_already_generated_coins(blockchain_height - 1) : 0;
if (!get_block_reward(median, 1, already_generated_coins, base_reward, version))
return false;

Loading…
Cancel
Save