Skip to content

Commit

Permalink
actually fix address
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Feb 6, 2024
1 parent fdb63cb commit ffb0f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/impl/full/eth_trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func buildTraces(env *environment, addr []int, et *types.ExecutionTrace) error {
}
addr = addr[:len(addr):len(addr)]
for i := range recurseInto.Subcalls {
err := buildTraces(subEnv, append(addr, env.subtraceCount), &recurseInto.Subcalls[i])
err := buildTraces(subEnv, append(addr, subEnv.subtraceCount), &recurseInto.Subcalls[i])
if err != nil {
return err
}
Expand Down

0 comments on commit ffb0f60

Please sign in to comment.