mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-27 22:28:21 +00:00
068463dff4
* Store transactions individually * Store transactions individually * save progress * checkIndex * merge
18 lines
293 B
Go
18 lines
293 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.Database
|
|
Back ethdb.Backend
|
|
Chaindata string
|
|
RemoteDBAddress string
|
|
}
|