mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-29 07:07:16 +00:00
84ae2eb1f8
* implement NoValueCursor interface * cleanup * fix tests * add more stats data to ui * can't display error * re-open DB low-level net interface when changing db * re-open DB low-level net interface when changing db * fix problem with displaying errors * run ci * improve prop check logic * storage tombstones integrity checks UI * storage page * make DB configurable Co-authored-by: alex.sharov <alex.sharov@lazada.com>
14 lines
178 B
Go
14 lines
178 B
Go
package apis
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/ledgerwatch/turbo-geth/ethdb/remote"
|
|
)
|
|
|
|
var ErrEntityNotFound = errors.New("entity not found")
|
|
|
|
type Env struct {
|
|
DB *remote.DB
|
|
}
|