mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 03:35:19 +00:00
10 lines
192 B
Go
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")
|
|
)
|