From 332053779daeb591556070dc2abc456e3aabc2db Mon Sep 17 00:00:00 2001 From: Alvaro Date: Thu, 26 Oct 2023 22:13:19 +0200 Subject: [PATCH] Fix linting --- 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 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 {