mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
3043d4722f
* initiate cache * imports fix * add in feature config flag * utilize a dynamic set of subnets * Merge branch 'master' into att-subnets * add in feature config flag * Merge branch 'att-subnets' of github.com:prysmaticlabs/prysm into att-subnets * Merge branch 'master' of https://github.com/prysmaticlabs/geth-sharding into att-subnets * shift * more changes * gaz * Update beacon-chain/rpc/validator/assignments.go * Update beacon-chain/rpc/validator/assignments.go * add flag * Merge branch 'att-subnets' of https://github.com/prysmaticlabs/geth-sharding into att-subnets * Merge branch 'master' into att-subnets * Merge refs/heads/master into att-subnets * no double flag * Merge branch 'att-subnets' of github.com:prysmaticlabs/prysm into att-subnets * amend committee ids to better name * gaz
51 lines
1.6 KiB
Go
51 lines
1.6 KiB
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
eth "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/feed"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/feed/operation"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/shared/sliceutil"
|
|
)
|
|
|
|
func (r *Service) committeeIndexBeaconAttestationSubscriber(ctx context.Context, msg proto.Message) error {
|
|
a, ok := msg.(*eth.Attestation)
|
|
if !ok {
|
|
return fmt.Errorf("message was not type *eth.Attestation, type=%T", msg)
|
|
}
|
|
|
|
if exists, _ := r.attPool.HasAggregatedAttestation(a); exists {
|
|
return nil
|
|
}
|
|
|
|
// Broadcast the unaggregated attestation on a feed to notify other services in the beacon node
|
|
// of a received unaggregated attestation.
|
|
r.attestationNotifier.OperationFeed().Send(&feed.Event{
|
|
Type: operation.UnaggregatedAttReceived,
|
|
Data: &operation.UnAggregatedAttReceivedData{
|
|
Attestation: a,
|
|
},
|
|
})
|
|
|
|
return r.attPool.SaveUnaggregatedAttestation(a)
|
|
}
|
|
|
|
func (r *Service) committeesCount() int {
|
|
activeValidatorIndices, err := r.chain.HeadValidatorsIndices(helpers.SlotToEpoch(r.chain.HeadSlot()))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return int(helpers.SlotCommitteeCount(uint64(len(activeValidatorIndices))))
|
|
}
|
|
|
|
func (r *Service) committeeIndices() []uint64 {
|
|
currentEpoch := helpers.SlotToEpoch(r.chain.HeadSlot())
|
|
return sliceutil.UnionUint64(cache.CommitteeIDs.GetIDs(currentEpoch),
|
|
cache.CommitteeIDs.GetIDs(currentEpoch+1))
|
|
}
|