mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 22:23:11 +00:00
10 lines
195 B
Go
10 lines
195 B
Go
package provider
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrLightBlockNotFound is returned when a provider can't find the
|
|
// requested header.
|
|
ErrLightBlockNotFound = errors.New("light block not found")
|
|
)
|