mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
10f45744d6
* first commit, remote att types * no more agg attestation proto * regen mock * only attestations * proto * att process * fix att references * more tests passing * use att protos * complete * change visibility * use gogoprotobu
28 lines
721 B
Go
28 lines
721 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/gogo/protobuf/jsonpb"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
)
|
|
|
|
// InitialValidatorRegistryFromJSON retrieves the validator set that is stored in
|
|
// genesis.json.
|
|
func InitialValidatorRegistryFromJSON(genesisJSONPath string) ([]*pb.ValidatorRecord, error) {
|
|
// genesisJSONPath is a user input for the path of genesis.json.
|
|
// Ex: /path/to/my/genesis.json.
|
|
f, err := os.Open(genesisJSONPath) // #nosec
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
beaconState := &pb.BeaconState{}
|
|
if err := jsonpb.Unmarshal(f, beaconState); err != nil {
|
|
return nil, fmt.Errorf("error converting JSON to proto: %v", err)
|
|
}
|
|
|
|
return beaconState.ValidatorRegistry, nil
|
|
}
|