erigon-pulse/eth/tracers/api.go

13 lines
278 B
Go
Raw Normal View History

package tracers
import "github.com/ledgerwatch/erigon/core/vm"
// 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
}