Skip to content

Commit

Permalink
Merge pull request ethereum#115 from OffchainLabs/fix-tracing-merge
Browse files Browse the repository at this point in the history
Fix tracing merge with removal of tips
  • Loading branch information
rachel-bousfield authored Jun 17, 2022
2 parents 81e3067 + 32dfaf4 commit f7082a8
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 @@ -375,7 +375,7 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {

// Arbitrum: record the tip if nonzero (this should never happen in L2)
if st.evm.Config.Debug && effectiveTip.Sign() != 0 {
st.evm.Config.Tracer.CaptureArbitrumTransfer(st.evm, nil, tipRecipient, effectiveTip, false, "tip")
st.evm.Config.Tracer.CaptureArbitrumTransfer(st.evm, nil, &st.evm.Context.Coinbase, effectiveTip, false, "tip")
}

st.evm.ProcessingHook.EndTxHook(st.gas, vmerr == nil)
Expand Down

0 comments on commit f7082a8

Please sign in to comment.