mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 02:47:26 +08:00
14 lines
452 B
Go
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")
|
|
)
|