erigon-pulse/eth/tracers/api.go
2021-03-17 17:28:04 +01:00

13 lines
282 B
Go

package tracers
import "github.com/ledgerwatch/turbo-geth/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
}