mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
fix lint error
This commit is contained in:
parent
ceee9c9f6c
commit
c1755cb69e
1 changed files with 4 additions and 4 deletions
|
|
@ -45,7 +45,7 @@ type callLog struct {
|
||||||
// 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 hexutil.Uint `json:"position"`
|
Position hexutil.Uint `json:"position"`
|
||||||
Removed bool `json:"removed,omitempty"`
|
Removed bool `json:"removed,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type callFrame struct {
|
type callFrame struct {
|
||||||
|
|
@ -121,9 +121,9 @@ type callTracer struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type callTracerConfig struct {
|
type callTracerConfig struct {
|
||||||
OnlyTopCall bool `json:"onlyTopCall"` // If true, call tracer won't collect any subcalls
|
OnlyTopCall bool `json:"onlyTopCall"` // If true, call tracer won't collect any subcalls
|
||||||
WithLog bool `json:"withLog"` // If true, call tracer will collect event logs
|
WithLog bool `json:"withLog"` // If true, call tracer will collect event logs
|
||||||
WithRemovedLog bool `json:"withRemovedLog"` // If true, mark failed logs as removed instead of deleting them
|
WithRemovedLog bool `json:"withRemovedLog"` // If true, mark failed logs as removed instead of deleting them
|
||||||
}
|
}
|
||||||
|
|
||||||
// newCallTracer returns a native go tracer which tracks
|
// newCallTracer returns a native go tracer which tracks
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue