mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
1123df7432
Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
34 lines
704 B
Go
34 lines
704 B
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/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.ROBlob, type=%T", msg)
|
|
}
|
|
|
|
s.setSeenBlobIndex(b.BlockRootSlice(), b.Index)
|
|
|
|
if err := s.cfg.chain.ReceiveBlob(ctx, b); err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO: convert operations feed to use ROBlob.
|
|
/*
|
|
s.cfg.operationNotifier.OperationFeed().Send(&feed.Event{
|
|
Type: opfeed.BlobSidecarReceived,
|
|
Data: &opfeed.BlobSidecarReceivedData{
|
|
Blob: b,
|
|
},
|
|
})
|
|
*/
|
|
return nil
|
|
}
|