Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Native and Js tracing impls for CaptureArbitrumTransfer #105

Merged
merged 12 commits into from
Jun 17, 2022
Prev Previous commit
rename destroy to selfDestruct
  • Loading branch information
rachel-bousfield committed Jun 17, 2022
commit 1fb931e35f7e14e2023c0b25655c3920662e8af0
2 changes: 1 addition & 1 deletion core/state_transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
if st.evm.Config.Debug {
for _, address := range st.evm.StateDB.GetSuicides() {
balance := st.evm.StateDB.GetBalance(address)
st.evm.Config.Tracer.CaptureArbitrumTransfer(st.evm, &address, nil, balance, false, "destroy")
st.evm.Config.Tracer.CaptureArbitrumTransfer(st.evm, &address, nil, balance, false, "selfDestruct")
}
}

Expand Down