claimtrie/error.go

9 lines
151 B
Go
Raw Permalink Normal View History

2018-06-27 22:14:30 -07:00
package claimtrie
import "fmt"
var (
// ErrInvalidHeight is returned when the height is invalid.
ErrInvalidHeight = fmt.Errorf("invalid height")
)