mirror of
https://github.com/tendermint/tendermint.git
synced 2025-12-23 14:25:19 +00:00
This PR removes lite & renames lite2 to light throughout the repo Signed-off-by: Marko Baricevic <marbar3778@yahoo.com> Closes: #4944
13 lines
366 B
Go
13 lines
366 B
Go
package provider
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrSignedHeaderNotFound is returned when a provider can't find the
|
|
// requested header.
|
|
ErrSignedHeaderNotFound = errors.New("signed header not found")
|
|
// ErrValidatorSetNotFound is returned when a provider can't find the
|
|
// requested validator set.
|
|
ErrValidatorSetNotFound = errors.New("validator set not found")
|
|
)
|