erigon-pulse/eth/tracers/api.go
Enrique Jose Avila Asapche a65f12b248
State override support (#3628)
* added stateOverride type

* solved import cycle

* refactoring

* imported wrong package

* fixed Call arguments

* typo

* override for traceCall
2022-03-01 15:40:24 +00:00

17 lines
391 B
Go

package tracers
import (
"github.com/ledgerwatch/erigon/core/vm"
"github.com/ledgerwatch/erigon/internal/ethapi"
)
// TraceConfig holds extra parameters to trace functions.
type TraceConfig struct {
*vm.LogConfig
Tracer *string
Timeout *string
Reexec *uint64
NoRefunds *bool // Turns off gas refunds when tracing
StateOverrides *ethapi.StateOverrides
}