mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
10 lines
172 B
Go
10 lines
172 B
Go
package shyfttracerinterface
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common"
|
|
)
|
|
|
|
type IShyftTracer interface {
|
|
GetTracerToRun(hash common.Hash) (interface{}, error)
|
|
}
|
|
|