mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
9e7352704c
* Optimize `SubscribeCommitteeSubnets` VC action * test fixes * remove newline * review
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
package beacon_api
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"strconv"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v5/api/server/structs"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
func (c beaconApiValidatorClient) subscribeCommitteeSubnets(ctx context.Context, in *ethpb.CommitteeSubnetsSubscribeRequest, duties []*ethpb.DutiesResponse_Duty) error {
|
|
if in == nil {
|
|
return errors.New("committee subnets subscribe request is nil")
|
|
}
|
|
|
|
if len(in.CommitteeIds) != len(in.Slots) || len(in.CommitteeIds) != len(in.IsAggregator) || len(in.CommitteeIds) != len(duties) {
|
|
return errors.New("arrays `in.CommitteeIds`, `in.Slots`, `in.IsAggregator` and `duties` don't have the same length")
|
|
}
|
|
|
|
jsonCommitteeSubscriptions := make([]*structs.BeaconCommitteeSubscription, len(in.CommitteeIds))
|
|
for index := range in.CommitteeIds {
|
|
jsonCommitteeSubscriptions[index] = &structs.BeaconCommitteeSubscription{
|
|
CommitteeIndex: strconv.FormatUint(uint64(in.CommitteeIds[index]), 10),
|
|
CommitteesAtSlot: strconv.FormatUint(duties[index].CommitteesAtSlot, 10),
|
|
Slot: strconv.FormatUint(uint64(in.Slots[index]), 10),
|
|
IsAggregator: in.IsAggregator[index],
|
|
ValidatorIndex: strconv.FormatUint(uint64(duties[index].ValidatorIndex), 10),
|
|
}
|
|
}
|
|
|
|
committeeSubscriptionsBytes, err := json.Marshal(jsonCommitteeSubscriptions)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to marshal committees subscriptions")
|
|
}
|
|
|
|
return c.jsonRestHandler.Post(
|
|
ctx,
|
|
"/eth/v1/validator/beacon_committee_subscriptions",
|
|
nil,
|
|
bytes.NewBuffer(committeeSubscriptionsBytes),
|
|
nil,
|
|
)
|
|
}
|