mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
ethdb: simple var
Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
parent
72e9a72781
commit
370ad81074
1 changed files with 2 additions and 4 deletions
|
|
@ -22,10 +22,8 @@ import (
|
|||
"io"
|
||||
)
|
||||
|
||||
var (
|
||||
// ErrNotFound is the errorcode if the requested key does not exist.
|
||||
ErrNotFound = errors.New("not found")
|
||||
)
|
||||
// ErrNotFound is the errorcode if the requested key does not exist.
|
||||
var ErrNotFound = errors.New("not found")
|
||||
|
||||
// KeyValueReader wraps the Has and Get method of a backing data store.
|
||||
type KeyValueReader interface {
|
||||
|
|
|
|||
Loading…
Reference in a new issue