mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
0704ba685a
* try to return somethign for everything * default to unknown * debug * moar debug * move else to outer check * working * reorder imports * cleanup * fix TestGetDuties_NextEpoch_CantFindValidatorIdx * Merge branch 'master' into return-statuses-on-duties * Update validator/client/validator.go * Merge branch 'master' into return-statuses-on-duties * Merge branch 'master' into return-statuses-on-duties
78 lines
2.7 KiB
Go
78 lines
2.7 KiB
Go
package validator
|
|
|
|
import (
|
|
"context"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/state"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// GetDuties returns the committee assignment response from a given validator public key.
|
|
// The committee assignment response contains the following fields for the current and previous epoch:
|
|
// 1.) The list of validators in the committee.
|
|
// 2.) The shard to which the committee is assigned.
|
|
// 3.) The slot at which the committee is assigned.
|
|
// 4.) The bool signaling if the validator is expected to propose a block at the assigned slot.
|
|
func (vs *Server) GetDuties(ctx context.Context, req *ethpb.DutiesRequest) (*ethpb.DutiesResponse, error) {
|
|
if vs.SyncChecker.Syncing() {
|
|
return nil, status.Error(codes.Unavailable, "Syncing to latest head, not ready to respond")
|
|
}
|
|
|
|
s, err := vs.HeadFetcher.HeadState(ctx)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get head state: %v", err)
|
|
}
|
|
|
|
// Advance state with empty transitions up to the requested epoch start slot.
|
|
if epochStartSlot := helpers.StartSlot(req.Epoch); s.Slot() < epochStartSlot {
|
|
s, err = state.ProcessSlots(ctx, s, epochStartSlot)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not process slots up to %d: %v", epochStartSlot, err)
|
|
}
|
|
}
|
|
|
|
committeeAssignments, proposerIndexToSlot, err := helpers.CommitteeAssignments(s, req.Epoch)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not compute committee assignments: %v", err)
|
|
}
|
|
|
|
var validatorAssignments []*ethpb.DutiesResponse_Duty
|
|
for _, pubKey := range req.PublicKeys {
|
|
if ctx.Err() != nil {
|
|
return nil, status.Errorf(codes.Aborted, "Could not continue fetching assignments: %v", ctx.Err())
|
|
}
|
|
// Default assignment.
|
|
assignment := ðpb.DutiesResponse_Duty{
|
|
PublicKey: pubKey,
|
|
}
|
|
|
|
idx, ok, err := vs.BeaconDB.ValidatorIndex(ctx, pubKey)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not fetch validator idx for public key %#x: %v", pubKey, err)
|
|
}
|
|
if ok {
|
|
ca, ok := committeeAssignments[idx]
|
|
if ok {
|
|
assignment.Committee = ca.Committee
|
|
assignment.Status = vs.assignmentStatus(idx, s)
|
|
assignment.ValidatorIndex = idx
|
|
assignment.PublicKey = pubKey
|
|
assignment.AttesterSlot = ca.AttesterSlot
|
|
assignment.ProposerSlot = proposerIndexToSlot[idx]
|
|
assignment.CommitteeIndex = ca.CommitteeIndex
|
|
}
|
|
} else {
|
|
vs := vs.validatorStatus(ctx, pubKey, s)
|
|
assignment.Status = vs.Status
|
|
}
|
|
validatorAssignments = append(validatorAssignments, assignment)
|
|
}
|
|
|
|
return ðpb.DutiesResponse{
|
|
Duties: validatorAssignments,
|
|
}, nil
|
|
}
|