aboutsummaryrefslogtreecommitdiffstats
path: root/blockdb
diff options
context:
space:
mode:
Diffstat (limited to 'blockdb')
-rw-r--r--blockdb/interfaces.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/blockdb/interfaces.go b/blockdb/interfaces.go
index 4d35e2e..9822dfc 100644
--- a/blockdb/interfaces.go
+++ b/blockdb/interfaces.go
@@ -27,13 +27,13 @@ import (
var (
// ErrBlockExists is the error when block eixsts.
ErrBlockExists = errors.New("block exists")
- // ErrBlockDoesNotExist is the error when block does not eixsts.
+ // ErrBlockDoesNotExist is the error when block does not eixst.
ErrBlockDoesNotExist = errors.New("block does not exist")
- // ErrValidatorDoesNotExist is the error when validator does not eixsts.
+ // ErrValidatorDoesNotExist is the error when validator does not eixst.
ErrValidatorDoesNotExist = errors.New("validator does not exist")
)
-// BlockDatabase is the interface for a BlockDatabse.
+// BlockDatabase is the interface for a BlockDatabase.
type BlockDatabase interface {
Reader
Writer