Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ian0371 committed Jul 3, 2024
1 parent a772752 commit df97c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/cn/tracers/tracers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func TestPrestateTracerCreate2(t *testing.T) {

func covertToCallTrace(t *testing.T, internalTx *vm.InternalTxTrace) *callTrace {
// coverts nested InternalTxTraces
var nestedCalls []callTrace
nestedCalls := make([]callTrace, 0)
for _, call := range internalTx.Calls {
nestedCalls = append(nestedCalls, *covertToCallTrace(t, call))
}
Expand Down

0 comments on commit df97c1d

Please sign in to comment.