mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
38 lines
1.2 KiB
Go
38 lines
1.2 KiB
Go
package util
|
|
|
|
import (
|
|
fieldparams "github.com/prysmaticlabs/prysm/v5/config/fieldparams"
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
"github.com/prysmaticlabs/prysm/v5/encoding/bytesutil"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// HydrateSyncCommittee hydrates the provided sync committee message.
|
|
func HydrateSyncCommittee(s *ethpb.SyncCommitteeMessage) *ethpb.SyncCommitteeMessage {
|
|
if s.Signature == nil {
|
|
s.Signature = make([]byte, 96)
|
|
}
|
|
if s.BlockRoot == nil {
|
|
s.BlockRoot = make([]byte, fieldparams.RootLength)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// ConvertToCommittee takes a list of pubkeys and returns a SyncCommittee with
|
|
// these keys as members. Some keys may appear repeated
|
|
func ConvertToCommittee(inputKeys [][]byte) *ethpb.SyncCommittee {
|
|
var pubKeys [][]byte
|
|
for i := uint64(0); i < params.BeaconConfig().SyncCommitteeSize; i++ {
|
|
if i < uint64(len(inputKeys)) {
|
|
pubKeys = append(pubKeys, bytesutil.PadTo(inputKeys[i], params.BeaconConfig().BLSPubkeyLength))
|
|
} else {
|
|
pubKeys = append(pubKeys, bytesutil.PadTo([]byte{}, params.BeaconConfig().BLSPubkeyLength))
|
|
}
|
|
}
|
|
|
|
return ðpb.SyncCommittee{
|
|
Pubkeys: pubKeys,
|
|
AggregatePubkey: bytesutil.PadTo([]byte{}, params.BeaconConfig().BLSPubkeyLength),
|
|
}
|
|
}
|