Files
tendermint/light/store/errors.go
2020-09-01 17:45:55 +02:00

10 lines
192 B
Go

package store
import "errors"
var (
// ErrLightBlockNotFound is returned when a store does not have the
// requested header.
ErrLightBlockNotFound = errors.New("light block not found")
)