mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
a2c1185032
* Add sync committeee contributions to monitor * gaz * Raul's review * Added lock around TrackedValidators * add comment to trackedIndex * add missing locks because of trackedIndex * Terence fixes 2 * moved TrackedValidator to service from config * Terence comment fix Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
package util
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
|
|
ethpb "github.com/prysmaticlabs/prysm/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, 32)
|
|
}
|
|
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),
|
|
}
|
|
}
|