erigon-pulse/cmd/restapi/apis/common.go
Evgeny Danilenko 3980fa7d45
Grps eth_sendTransaction (#882)
* implementation

* tidy gomod

* linters

* fix cmd test

* fix

* fix lint
2020-08-11 22:09:30 +01:00

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
}