mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
a65f12b248
* added stateOverride type * solved import cycle * refactoring * imported wrong package * fixed Call arguments * typo * override for traceCall
17 lines
391 B
Go
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
|
|
}
|