Skip to content

Commit

Permalink
Merge pull request #386 from OffchainLabs/revert-tip-receipient
Browse files Browse the repository at this point in the history
Revert accidental change to tipReceipient
  • Loading branch information
PlasmaPower authored Dec 17, 2024
2 parents 1e09a9f + 0844684 commit de229c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/state_transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
} else {
fee := new(uint256.Int).SetUint64(st.gasUsed())
fee.Mul(fee, effectiveTipU256)
st.state.AddBalance(st.evm.Context.Coinbase, fee, tracing.BalanceIncreaseRewardTransactionFee)
st.state.AddBalance(tipReceipient, fee, tracing.BalanceIncreaseRewardTransactionFee)
tipAmount = fee.ToBig()
}

Expand Down

0 comments on commit de229c2

Please sign in to comment.