mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
3416962fc2
* package level godocs fixed * all beacon node godocs * comment and gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
23 lines
661 B
Go
23 lines
661 B
Go
// Package blocks contains block processing libraries according to
|
|
// the eth2spec.
|
|
package blocks
|
|
|
|
import (
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
// NewGenesisBlock returns the canonical, genesis block for the beacon chain protocol.
|
|
func NewGenesisBlock(stateRoot []byte) *ethpb.SignedBeaconBlock {
|
|
zeroHash := params.BeaconConfig().ZeroHash[:]
|
|
genBlock := ðpb.BeaconBlock{
|
|
ParentRoot: zeroHash,
|
|
StateRoot: stateRoot,
|
|
Body: ðpb.BeaconBlockBody{},
|
|
}
|
|
return ðpb.SignedBeaconBlock{
|
|
Block: genBlock,
|
|
Signature: params.BeaconConfig().EmptySignature[:],
|
|
}
|
|
}
|