claimtrie/error.go

9 lines
151 B
Go
Raw Permalink Normal View History

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