mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
21 lines
595 B
Go
21 lines
595 B
Go
|
package sync
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/gogo/protobuf/proto"
|
||
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
||
|
)
|
||
|
|
||
|
// beaconAggregateProofSubscriber forwards the incoming validated aggregated attestation and proof to the
|
||
|
// attestation pool for processing.
|
||
|
func (r *Service) beaconAggregateProofSubscriber(ctx context.Context, msg proto.Message) error {
|
||
|
a, ok := msg.(*ethpb.AggregateAttestationAndProof)
|
||
|
if !ok {
|
||
|
return fmt.Errorf("message was not type *eth.AggregateAttestationAndProof, type=%T", msg)
|
||
|
}
|
||
|
|
||
|
return r.attPool.SaveAggregatedAttestation(a.Aggregate)
|
||
|
}
|