go-ethereum/shyfttracerinterface/tracer_interface.go
2018-07-16 11:43:17 -04:00

10 lines
172 B
Go

package shyfttracerinterface
import (
"github.com/ethereum/go-ethereum/common"
)
type IShyftTracer interface {
GetTracerToRun(hash common.Hash) (interface{}, error)
}