mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
977e539fe9
* Return error on invalid range and fix tests * Uncomment some test codes * Update comment * Sync with master, fixed more tests * Rm error condition, update comments, tests
173 lines
5.6 KiB
Go
173 lines
5.6 KiB
Go
package beacon
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// ListBeaconCommittees for a given epoch.
|
|
//
|
|
// If no filter criteria is specified, the response returns
|
|
// all beacon committees for the current epoch. The results are paginated by default.
|
|
func (bs *Server) ListBeaconCommittees(
|
|
ctx context.Context,
|
|
req *ethpb.ListCommitteesRequest,
|
|
) (*ethpb.BeaconCommittees, error) {
|
|
currentSlot := bs.GenesisTimeFetcher.CurrentSlot()
|
|
var requestedSlot uint64
|
|
switch q := req.QueryFilter.(type) {
|
|
case *ethpb.ListCommitteesRequest_Epoch:
|
|
startSlot, err := helpers.StartSlot(q.Epoch)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
requestedSlot = startSlot
|
|
case *ethpb.ListCommitteesRequest_Genesis:
|
|
requestedSlot = 0
|
|
default:
|
|
requestedSlot = currentSlot
|
|
}
|
|
|
|
requestedEpoch := helpers.SlotToEpoch(requestedSlot)
|
|
currentEpoch := helpers.SlotToEpoch(currentSlot)
|
|
if requestedEpoch > currentEpoch {
|
|
return nil, status.Errorf(
|
|
codes.InvalidArgument,
|
|
"Cannot retrieve information for an future epoch, current epoch %d, requesting %d",
|
|
currentEpoch,
|
|
requestedEpoch,
|
|
)
|
|
}
|
|
|
|
committees, activeIndices, err := bs.retrieveCommitteesForEpoch(ctx, requestedEpoch)
|
|
if err != nil {
|
|
return nil, status.Errorf(
|
|
codes.Internal,
|
|
"Could not retrieve committees for epoch %d: %v",
|
|
requestedEpoch,
|
|
err,
|
|
)
|
|
}
|
|
|
|
return ðpb.BeaconCommittees{
|
|
Epoch: requestedEpoch,
|
|
Committees: committees,
|
|
ActiveValidatorCount: uint64(len(activeIndices)),
|
|
}, nil
|
|
}
|
|
|
|
func (bs *Server) retrieveCommitteesForEpoch(
|
|
ctx context.Context,
|
|
epoch uint64,
|
|
) (map[uint64]*ethpb.BeaconCommittees_CommitteesList, []uint64, error) {
|
|
startSlot, err := helpers.StartSlot(epoch)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
requestedState, err := bs.StateGen.StateBySlot(ctx, startSlot)
|
|
if err != nil {
|
|
return nil, nil, status.Errorf(codes.Internal, "Could not get state: %v", err)
|
|
}
|
|
seed, err := helpers.Seed(requestedState, epoch, params.BeaconConfig().DomainBeaconAttester)
|
|
if err != nil {
|
|
return nil, nil, status.Error(codes.Internal, "Could not get seed")
|
|
}
|
|
activeIndices, err := helpers.ActiveValidatorIndices(requestedState, epoch)
|
|
if err != nil {
|
|
return nil, nil, status.Error(codes.Internal, "Could not get active indices")
|
|
}
|
|
|
|
committeesListsBySlot, err := computeCommittees(startSlot, activeIndices, seed)
|
|
if err != nil {
|
|
return nil, nil, status.Errorf(
|
|
codes.InvalidArgument,
|
|
"Could not compute committees for epoch %d: %v",
|
|
helpers.SlotToEpoch(startSlot),
|
|
err,
|
|
)
|
|
}
|
|
return committeesListsBySlot, activeIndices, nil
|
|
}
|
|
|
|
// retrieveCommitteesForRoot uses the provided state root to get the current epoch committees.
|
|
// Note: This function is always recommended over retrieveCommitteesForEpoch as states are
|
|
// retrieved from the DB for this function, rather than generated.
|
|
func (bs *Server) retrieveCommitteesForRoot(
|
|
ctx context.Context,
|
|
root []byte,
|
|
) (map[uint64]*ethpb.BeaconCommittees_CommitteesList, []uint64, error) {
|
|
requestedState, err := bs.StateGen.StateByRoot(ctx, bytesutil.ToBytes32(root))
|
|
if err != nil {
|
|
return nil, nil, status.Error(codes.Internal, fmt.Sprintf("Could not get state: %v", err))
|
|
}
|
|
epoch := helpers.CurrentEpoch(requestedState)
|
|
seed, err := helpers.Seed(requestedState, epoch, params.BeaconConfig().DomainBeaconAttester)
|
|
if err != nil {
|
|
return nil, nil, status.Error(codes.Internal, "Could not get seed")
|
|
}
|
|
activeIndices, err := helpers.ActiveValidatorIndices(requestedState, epoch)
|
|
if err != nil {
|
|
return nil, nil, status.Error(codes.Internal, "Could not get active indices")
|
|
}
|
|
|
|
startSlot, err := helpers.StartSlot(epoch)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
committeesListsBySlot, err := computeCommittees(startSlot, activeIndices, seed)
|
|
if err != nil {
|
|
return nil, nil, status.Errorf(
|
|
codes.InvalidArgument,
|
|
"Could not compute committees for epoch %d: %v",
|
|
epoch,
|
|
err,
|
|
)
|
|
}
|
|
return committeesListsBySlot, activeIndices, nil
|
|
}
|
|
|
|
// Compute committees given a start slot, active validator indices, and
|
|
// the attester seeds value.
|
|
func computeCommittees(
|
|
startSlot uint64,
|
|
activeIndices []uint64,
|
|
attesterSeed [32]byte,
|
|
) (map[uint64]*ethpb.BeaconCommittees_CommitteesList, error) {
|
|
committeesListsBySlot := make(map[uint64]*ethpb.BeaconCommittees_CommitteesList, params.BeaconConfig().SlotsPerEpoch)
|
|
for slot := startSlot; slot < startSlot+params.BeaconConfig().SlotsPerEpoch; slot++ {
|
|
var countAtSlot = uint64(len(activeIndices)) / params.BeaconConfig().SlotsPerEpoch / params.BeaconConfig().TargetCommitteeSize
|
|
if countAtSlot > params.BeaconConfig().MaxCommitteesPerSlot {
|
|
countAtSlot = params.BeaconConfig().MaxCommitteesPerSlot
|
|
}
|
|
if countAtSlot == 0 {
|
|
countAtSlot = 1
|
|
}
|
|
committeeItems := make([]*ethpb.BeaconCommittees_CommitteeItem, countAtSlot)
|
|
for committeeIndex := uint64(0); committeeIndex < countAtSlot; committeeIndex++ {
|
|
committee, err := helpers.BeaconCommittee(activeIndices, attesterSeed, slot, committeeIndex)
|
|
if err != nil {
|
|
return nil, status.Errorf(
|
|
codes.Internal,
|
|
"Could not compute committee for slot %d: %v",
|
|
slot,
|
|
err,
|
|
)
|
|
}
|
|
committeeItems[committeeIndex] = ðpb.BeaconCommittees_CommitteeItem{
|
|
ValidatorIndices: committee,
|
|
}
|
|
}
|
|
committeesListsBySlot[slot] = ðpb.BeaconCommittees_CommitteesList{
|
|
Committees: committeeItems,
|
|
}
|
|
}
|
|
return committeesListsBySlot, nil
|
|
}
|