mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
15 lines
425 B
Go
15 lines
425 B
Go
|
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 {
|
||
|
return r.chain.ReceiveAttestationNoPubsub(ctx, msg.(*ethpb.Attestation))
|
||
|
}
|