mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
wallet2: don't wait a day before using new version fees
30 blocks should be more than enough to drain the txpool of transactions made with the old fee scheme
This commit is contained in:
parent
581994b61c
commit
e4d100b062
@ -6919,7 +6919,7 @@ uint64_t wallet2::get_base_fee() const
|
|||||||
else
|
else
|
||||||
return m_light_wallet_per_kb_fee;
|
return m_light_wallet_per_kb_fee;
|
||||||
}
|
}
|
||||||
bool use_dyn_fee = use_fork_rules(HF_VERSION_DYNAMIC_FEE, -720 * 1);
|
bool use_dyn_fee = use_fork_rules(HF_VERSION_DYNAMIC_FEE, -30 * 1);
|
||||||
if (!use_dyn_fee)
|
if (!use_dyn_fee)
|
||||||
return FEE_PER_KB;
|
return FEE_PER_KB;
|
||||||
|
|
||||||
@ -6950,7 +6950,7 @@ int wallet2::get_fee_algorithm() const
|
|||||||
return 3;
|
return 3;
|
||||||
if (use_fork_rules(5, 0))
|
if (use_fork_rules(5, 0))
|
||||||
return 2;
|
return 2;
|
||||||
if (use_fork_rules(3, -720 * 14))
|
if (use_fork_rules(3, -30 * 14))
|
||||||
return 1;
|
return 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user