From c1755cb69efe4b05fad66a0db1500ff0864f290a Mon Sep 17 00:00:00 2001 From: "levin.l" Date: Mon, 17 Nov 2025 13:26:43 +0800 Subject: [PATCH] fix lint error --- eth/tracers/native/call.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eth/tracers/native/call.go b/eth/tracers/native/call.go index 3c7f5d9dd1..af74fa40a8 100644 --- a/eth/tracers/native/call.go +++ b/eth/tracers/native/call.go @@ -45,7 +45,7 @@ type callLog struct { // Position of the log relative to subcalls within the same trace // See https://github.com/ethereum/go-ethereum/pull/28389 for details Position hexutil.Uint `json:"position"` - Removed bool `json:"removed,omitempty"` + Removed bool `json:"removed,omitempty"` } type callFrame struct { @@ -121,9 +121,9 @@ type callTracer struct { } type callTracerConfig struct { - OnlyTopCall bool `json:"onlyTopCall"` // If true, call tracer won't collect any subcalls - WithLog bool `json:"withLog"` // If true, call tracer will collect event logs - WithRemovedLog bool `json:"withRemovedLog"` // If true, mark failed logs as removed instead of deleting them + OnlyTopCall bool `json:"onlyTopCall"` // If true, call tracer won't collect any subcalls + WithLog bool `json:"withLog"` // If true, call tracer will collect event logs + WithRemovedLog bool `json:"withRemovedLog"` // If true, mark failed logs as removed instead of deleting them } // newCallTracer returns a native go tracer which tracks