erigon-pulse/cmd/restapi/apis/common.go
Alex Sharov 84ae2eb1f8
Intermediate Hashes UI (#395)
* 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>
2020-03-20 10:06:14 +00:00

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
}