github.com/pure-x-eth/consensus_tm@v0.0.0-20230502163723-e3c2ff987250/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 )