mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "ethdb: simple var"
This reverts commit 370ad81074.
Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
parent
370ad81074
commit
7f76f442dc
1 changed files with 4 additions and 2 deletions
|
|
@ -22,8 +22,10 @@ import (
|
|||
"io"
|
||||
)
|
||||
|
||||
// ErrNotFound is the errorcode if the requested key does not exist.
|
||||
var ErrNotFound = errors.New("not found")
|
||||
var (
|
||||
// ErrNotFound is the errorcode if the requested key does not exist.
|
||||
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