mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 19:41:19 +00:00
387b4d7f35
Moved some of the tracers to `eth/tracers/logger` to make it more similar to go-ethereum. Removed Erigon-specific `Capture-` functions Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro-2.local>
17 lines
411 B
Go
17 lines
411 B
Go
package tracers
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/eth/tracers/logger"
|
|
"github.com/ledgerwatch/erigon/turbo/adapter/ethapi"
|
|
)
|
|
|
|
// TraceConfig holds extra parameters to trace functions.
|
|
type TraceConfig struct {
|
|
*logger.LogConfig
|
|
Tracer *string
|
|
Timeout *string
|
|
Reexec *uint64
|
|
NoRefunds *bool // Turns off gas refunds when tracing
|
|
StateOverrides *ethapi.StateOverrides
|
|
}
|