12 lines
166 B
Go
12 lines
166 B
Go
|
package restricted
|
||
|
|
||
|
import (
|
||
|
"github.com/openrelayxyz/plugeth-utils/core"
|
||
|
)
|
||
|
|
||
|
type Backend interface {
|
||
|
core.Backend
|
||
|
// General Ethereum API
|
||
|
ChainDb() Database
|
||
|
}
|