Skip to content

Commit e5e4c51

Browse files
authored
Merge branch 'master' into merge-v1.14.4
2 parents 6352438 + de229c2 commit e5e4c51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/state_transition.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
530530
} else {
531531
fee := new(uint256.Int).SetUint64(st.gasUsed())
532532
fee.Mul(fee, effectiveTipU256)
533-
st.state.AddBalance(st.evm.Context.Coinbase, fee, tracing.BalanceIncreaseRewardTransactionFee)
533+
st.state.AddBalance(tipReceipient, fee, tracing.BalanceIncreaseRewardTransactionFee)
534534
tipAmount = fee.ToBig()
535535
// add the coinbase to the witness iff the fee is greater than 0
536536
if rules.IsEIP4762 && fee.Sign() != 0 {

0 commit comments

Comments
 (0)