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

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")
)