Skip to content

Commit bd8e6ed

Browse files
committed
fix
1 parent 4d02fdd commit bd8e6ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eth/tracers/native/call_flat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ func (t *flatCallTracer) OnExit(depth int, output []byte, gasUsed uint64, err er
195195
if t.config.IncludePrecompiles {
196196
return
197197
}
198-
if len(t.tracer.callstack[len(t.tracer.callstack)-1].Calls) > 0 {
198+
if len(t.tracer.callstack[len(t.tracer.callstack)-1].Calls) == 0 {
199199
return
200200
}
201201
var (

0 commit comments

Comments
 (0)