diff --git a/core/state_transition.go b/core/state_transition.go index 920c1d5c7..ffb7777fa 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -383,8 +383,7 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) { st.refundGas(params.RefundQuotientEIP3529) } effectiveTip := msg.GasPrice - // stop burning base fees if bosagora - if rules.IsLondon && !st.evm.ChainConfig().IsBosagora(st.evm.Context.BlockNumber) { + if rules.IsLondon { effectiveTip = cmath.BigMin(msg.GasTipCap, new(big.Int).Sub(msg.GasFeeCap, st.evm.Context.BaseFee)) }