erigon-pulse/cmd/restapi/apis/common.go

16 lines
230 B
Go
Raw Normal View History

2020-02-09 10:31:52 +00:00
package apis
import (
"errors"
"github.com/ledgerwatch/turbo-geth/ethdb"
)
2020-02-09 10:31:52 +00:00
var ErrEntityNotFound = errors.New("entity not found")
type Env struct {
DB ethdb.KV
Chaindata string
RemoteDBAddress string
}