2020-09-14 18:42:08 +00:00
|
|
|
package cache
|
|
|
|
|
2021-02-23 00:14:50 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
|
|
)
|
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
|
2021-02-23 00:14:50 +00:00
|
|
|
ShuffledIndices []types.ValidatorIndex
|
|
|
|
SortedIndices []types.ValidatorIndex
|
2020-09-14 18:42:08 +00:00
|
|
|
}
|