ceremonyclient/node/keyedaggregator/errors.go
2025-11-21 04:34:24 -06:00

14 lines
452 B
Go

package keyedaggregator
import "errors"
var (
// ErrSequenceBelowRetention indicates that a collector for the requested
// sequence can no longer be accessed because it was pruned.
ErrSequenceBelowRetention = errors.New("sequence below retention threshold")
// ErrSequenceUnknown indicates that the requested sequence is not known to
// the collaborating components and should be dropped.
ErrSequenceUnknown = errors.New("unknown sequence")
)