fix linter (#59)

This commit is contained in:
Sina M 2025-05-20 11:04:30 +02:00 committed by GitHub
parent b377e109e0
commit 448e31057f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,16 +49,16 @@ type contractSizeWithOpcode struct {
// erc7562Trace is the result of a erc7562Tracer run. // erc7562Trace is the result of a erc7562Tracer run.
type erc7562Trace struct { type erc7562Trace struct {
From common.Address `json:"from"` From common.Address `json:"from"`
Gas *hexutil.Uint64 `json:"gas"` Gas *hexutil.Uint64 `json:"gas"`
GasUsed *hexutil.Uint64 `json:"gasUsed"` GasUsed *hexutil.Uint64 `json:"gasUsed"`
To *common.Address `json:"to,omitempty" rlp:"optional"` To *common.Address `json:"to,omitempty" rlp:"optional"`
Input hexutil.Bytes `json:"input" rlp:"optional"` Input hexutil.Bytes `json:"input" rlp:"optional"`
Output hexutil.Bytes `json:"output,omitempty" rlp:"optional"` Output hexutil.Bytes `json:"output,omitempty" rlp:"optional"`
Error string `json:"error,omitempty" rlp:"optional"` Error string `json:"error,omitempty" rlp:"optional"`
RevertReason string `json:"revertReason,omitempty"` RevertReason string `json:"revertReason,omitempty"`
Logs []callLog `json:"logs,omitempty" rlp:"optional"` Logs []callLog `json:"logs,omitempty" rlp:"optional"`
Value *hexutil.Big `json:"value,omitempty" rlp:"optional"` Value *hexutil.Big `json:"value,omitempty" rlp:"optional"`
AccessedSlots accessedSlots `json:"accessedSlots"` AccessedSlots accessedSlots `json:"accessedSlots"`
ExtCodeAccessInfo []common.Address `json:"extCodeAccessInfo"` ExtCodeAccessInfo []common.Address `json:"extCodeAccessInfo"`
UsedOpcodes map[hexutil.Uint64]uint64 `json:"usedOpcodes"` UsedOpcodes map[hexutil.Uint64]uint64 `json:"usedOpcodes"`