prysm-pulse/beacon-chain/sync/subscriber_sync_committee_message.go
int88 4d68211ad4
fix error message of subscriber (#11622)
Co-authored-by: terencechain <terence@prysmaticlabs.com>
Co-authored-by: Radosław Kapka <rkapka@wp.pl>
2022-11-07 16:44:38 +00:00

25 lines
557 B
Go

package sync
import (
"context"
"fmt"
"github.com/pkg/errors"
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
"google.golang.org/protobuf/proto"
)
// skipcq: SCC-U1000
func (s *Service) syncCommitteeMessageSubscriber(_ context.Context, msg proto.Message) error {
m, ok := msg.(*ethpb.SyncCommitteeMessage)
if !ok {
return fmt.Errorf("message was not type *ethpb.SyncCommitteeMessage, type=%T", msg)
}
if m == nil {
return errors.New("nil sync committee message")
}
return s.cfg.syncCommsPool.SaveSyncCommitteeMessage(m)
}