Fix linting

This commit is contained in:
Alvaro 2023-10-26 22:13:19 +02:00
parent befff6ed30
commit 332053779d

View file

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