mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
3980fa7d45
* implementation * tidy gomod * linters * fix cmd test * fix * fix lint
18 lines
291 B
Go
18 lines
291 B
Go
package apis
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
|
)
|
|
|
|
var ErrEntityNotFound = errors.New("entity not found")
|
|
|
|
type Env struct {
|
|
KV ethdb.KV
|
|
DB ethdb.Getter
|
|
Back ethdb.Backend
|
|
Chaindata string
|
|
RemoteDBAddress string
|
|
}
|