2020-09-14 18:42:08 +00:00
|
|
|
package cache
|
|
|
|
|
2021-02-23 00:14:50 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2024-02-15 05:46:47 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
2021-02-23 00:14:50 +00:00
|
|
|
)
|
2020-09-14 18:42:08 +00:00
|
|
|
|
|
|
|
// ErrNotCommittee will be returned when a cache object is not a pointer to
|
|
|
|
// a Committee struct.
|
|
|
|
var ErrNotCommittee = errors.New("object is not a committee struct")
|
|
|
|
|
|
|
|
// Committees defines the shuffled committees seed.
|
|
|
|
type Committees struct {
|
|
|
|
CommitteeCount uint64
|
|
|
|
Seed [32]byte
|
2023-01-26 14:40:12 +00:00
|
|
|
ShuffledIndices []primitives.ValidatorIndex
|
|
|
|
SortedIndices []primitives.ValidatorIndex
|
2020-09-14 18:42:08 +00:00
|
|
|
}
|