Explanatory message for workaround

This commit is contained in:
Sean Darcy 2021-07-09 16:01:56 +10:00
parent 381a3a4ecd
commit ff1b25c961
1 changed files with 3 additions and 0 deletions

View File

@ -7783,6 +7783,9 @@ uint64_t wallet2::get_fee_percent(uint32_t priority, txtype type) const
THROW_WALLET_EXCEPTION(error::invalid_priority);
uint64_t burn_pct = 0;
// v9.2.0 introduced minor versions to forks, this use_fork_rules(18,0) will return the height
// for HF18.1 when we want 18.0. Workaround this by allowing the use of 18 fork rules 4000
// blocks before 18.1
if (use_fork_rules(network_version_18, 4000))
burn_pct = BLINK_BURN_TX_FEE_PERCENT_V18;
else