Files
prysm/beacon-chain/sync/subscriber_blob_sidecar.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

38 lines
915 B
Go

package sync
import (
"context"
"fmt"
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/feed"
opfeed "github.com/OffchainLabs/prysm/v7/beacon-chain/core/feed/operation"
"github.com/OffchainLabs/prysm/v7/consensus-types/blocks"
"google.golang.org/protobuf/proto"
)
func (s *Service) blobSubscriber(ctx context.Context, msg proto.Message) error {
b, ok := msg.(blocks.VerifiedROBlob)
if !ok {
return fmt.Errorf("message was not type blocks.VerifiedROBlob, type=%T", msg)
}
return s.subscribeBlob(ctx, b)
}
func (s *Service) subscribeBlob(ctx context.Context, b blocks.VerifiedROBlob) error {
s.setSeenBlobIndex(b.Slot(), b.ProposerIndex(), b.Index)
if err := s.cfg.chain.ReceiveBlob(ctx, b); err != nil {
return err
}
s.cfg.operationNotifier.OperationFeed().Send(&feed.Event{
Type: opfeed.BlobSidecarReceived,
Data: &opfeed.BlobSidecarReceivedData{
Blob: &b,
},
})
return nil
}