Merge pull request #9232

7194506 Blockchain: remove old fee calc logic (jeffro256)
This commit is contained in:
luigi1111 2024-05-20 23:18:07 -05:00
commit 6462d3760d
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
7 changed files with 32 additions and 313 deletions

View file

@ -3021,16 +3021,10 @@ namespace cryptonote
CHECK_PAYMENT(req, res, COST_PER_FEE_ESTIMATE);
const uint8_t version = m_core.get_blockchain_storage().get_current_hard_fork_version();
if (version >= HF_VERSION_2021_SCALING)
{
m_core.get_blockchain_storage().get_dynamic_base_fee_estimate_2021_scaling(req.grace_blocks, res.fees);
res.fee = res.fees[0];
}
else
{
res.fee = m_core.get_blockchain_storage().get_dynamic_base_fee_estimate(req.grace_blocks);
}
res.quantization_mask = Blockchain::get_fee_quantization_mask();
res.status = CORE_RPC_STATUS_OK;
return true;