mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
4235980511
* Delete old code * RPC mock testing * Fixed BUILD * Conflict * Lint * More lint
22 lines
729 B
Go
22 lines
729 B
Go
// Package blocks contains block processing libraries. These libraries
|
|
// process and verify block specific messages such as PoW receipt root,
|
|
// RANDAO, validator deposits, exits and slashing proofs.
|
|
package blocks
|
|
|
|
import (
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
// NewGenesisBlock returns the canonical, genesis block for the beacon chain protocol.
|
|
func NewGenesisBlock(stateRoot []byte) *ethpb.BeaconBlock {
|
|
zeroHash := params.BeaconConfig().ZeroHash[:]
|
|
genBlock := ðpb.BeaconBlock{
|
|
ParentRoot: zeroHash,
|
|
StateRoot: stateRoot,
|
|
Body: ðpb.BeaconBlockBody{},
|
|
Signature: params.BeaconConfig().EmptySignature[:],
|
|
}
|
|
return genBlock
|
|
}
|