prysm-pulse/beacon-chain/sync/subscriber_beacon_attestation.go

19 lines
529 B
Go
Raw Normal View History

package sync
import (
"context"
"github.com/gogo/protobuf/proto"
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
)
// beaconAttestationSubscriber forwards the incoming validated attestation to the blockchain
// service for processing.
func (r *RegularSync) beaconAttestationSubscriber(ctx context.Context, msg proto.Message) error {
2019-08-28 03:19:47 +00:00
if err := r.operations.HandleAttestation(ctx, msg.(*ethpb.Attestation)); err != nil {
return err
}
return r.chain.ReceiveAttestationNoPubsub(ctx, msg.(*ethpb.Attestation))
}