File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 44
55### DEPENDENCIES
66
7+ ### IMPROVEMENTS
8+
9+ ### FEATURES
10+
11+ ### BUG FIXES
12+
13+ - [ \# 748] ( https://github.com/cosmos/evm/pull/748 ) Fix DynamicFeeChecker in Cosmos ante handler to respect NoBaseFee feemarkets' parameter.
14+
15+ ## v0.5.0
16+
17+ ### DEPENDENCIES
18+
719### BUG FIXES
820
921- [ \# 471] ( https://github.com/cosmos/evm/pull/471 ) Notify new block for mempool in time
Original file line number Diff line number Diff line change @@ -58,10 +58,9 @@ func FeeChecker(
5858 }
5959
6060 baseFee := feemarketParams .BaseFee
61- // if baseFee is nil because it is disabled
62- // or not found, consider it as 0
61+ // if baseFee is not enabled, consider it 0
6362 // so the DynamicFeeTx logic can be applied
64- if baseFee .IsNil () {
63+ if baseFee .IsNil () || ! feemarketParams . IsBaseFeeEnabled ( ctx . BlockHeight ()) {
6564 baseFee = sdkmath .LegacyZeroDec ()
6665 }
6766
You can’t perform that action at this time.
0 commit comments