github.com/soomindae/tendermint@v0.0.5-0.20210528140126-84a0c70c8162/light/store/errors.go (about)

     1  package store
     2  
     3  import "errors"
     4  
     5  var (
     6  	// ErrLightBlockNotFound is returned when a store does not have the
     7  	// requested header.
     8  	ErrLightBlockNotFound = errors.New("light block not found")
     9  )