mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
fix linter (#59)
This commit is contained in:
parent
b377e109e0
commit
448e31057f
1 changed files with 10 additions and 10 deletions
|
|
@ -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"`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue