Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliyb committed Jan 15, 2025
1 parent ceccca7 commit 13a11e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/evm/jsonrpc/tracer_prestate.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ func (t *prestateTracer) GetResult() (json.RawMessage, error) {
result = append(result, TxTraceResult{TxHash: txHash, Result: diffResult})

for _, tx := range t.fakeTxs {
csJSON, err := t.TraceFakeTx(tx)
var csJSON json.RawMessage
csJSON, err = t.TraceFakeTx(tx)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 13a11e5

Please sign in to comment.