erigon-pulse/eth/tracers/api.go

13 lines
282 B
Go
Raw Normal View History

package tracers
2021-03-17 16:28:04 +00:00
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
}