diff --git a/eth/tracers/native/call.go b/eth/tracers/native/call.go index c3b572a28a..ad2af71b02 100644 --- a/eth/tracers/native/call.go +++ b/eth/tracers/native/call.go @@ -37,12 +37,12 @@ func init() { } type callLog struct { - Address common.Address `json:"address"` - Topics []common.Hash `json:"topics"` - Data hexutil.Bytes `json:"data"` + Address common.Address `json:"address"` + Topics []common.Hash `json:"topics"` + Data hexutil.Bytes `json:"data"` // Position of the log relative to subcalls within the same trace // See https://github.com/ethereum/go-ethereum/pull/28389 for details - Position int `json:"position"` + Position int `json:"position"` } type callFrame struct {