Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliyb committed Nov 21, 2024
1 parent 4b905df commit 478e180
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/evm/jsonrpc/trace_block.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ func parseTraceInternal(debugTrace CallFrame, blockHash *common.Hash, blockNumbe
traceCopy := make([]int, len(traceAddress))
copy(traceCopy, traceAddress)
traceCopy = append(traceCopy, subCalls)
var traces []*Trace
traces = parseTraceInternal(call, blockHash, blockNumber, txHash, txPosition, traceCopy)
traces := parseTraceInternal(call, blockHash, blockNumber, txHash, txPosition, traceCopy)
traceResult = append(traceResult, traces...)
subCalls++
}
Expand Down

0 comments on commit 478e180

Please sign in to comment.