Skip to content

Commit de229c2

Browse files
authored
Merge pull request #386 from OffchainLabs/revert-tip-receipient
Revert accidental change to tipReceipient
2 parents 1e09a9f + 0844684 commit de229c2

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
@@ -523,7 +523,7 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
523523
} else {
524524
fee := new(uint256.Int).SetUint64(st.gasUsed())
525525
fee.Mul(fee, effectiveTipU256)
526-
st.state.AddBalance(st.evm.Context.Coinbase, fee, tracing.BalanceIncreaseRewardTransactionFee)
526+
st.state.AddBalance(tipReceipient, fee, tracing.BalanceIncreaseRewardTransactionFee)
527527
tipAmount = fee.ToBig()
528528
}
529529

0 commit comments

Comments
 (0)