mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
2ba29a3cfc
* Add block and attestation to container pkg * Move aggregation into attestation * Update attestation_test.go * Move them to proto * Gazelle * fix cycle Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
84 lines
2.5 KiB
Go
84 lines
2.5 KiB
Go
package block
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// SignedBeaconBlockHeaderFromBlock function to retrieve signed block header from block.
|
|
func SignedBeaconBlockHeaderFromBlock(block *ethpb.SignedBeaconBlock) (*ethpb.SignedBeaconBlockHeader, error) {
|
|
if block.Block == nil || block.Block.Body == nil {
|
|
return nil, errors.New("nil block")
|
|
}
|
|
|
|
bodyRoot, err := block.Block.Body.HashTreeRoot()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get body root of block")
|
|
}
|
|
return ðpb.SignedBeaconBlockHeader{
|
|
Header: ðpb.BeaconBlockHeader{
|
|
Slot: block.Block.Slot,
|
|
ProposerIndex: block.Block.ProposerIndex,
|
|
ParentRoot: block.Block.ParentRoot,
|
|
StateRoot: block.Block.StateRoot,
|
|
BodyRoot: bodyRoot[:],
|
|
},
|
|
Signature: block.Signature,
|
|
}, nil
|
|
}
|
|
|
|
// SignedBeaconBlockHeaderFromBlockInterface function to retrieve signed block header from block.
|
|
func SignedBeaconBlockHeaderFromBlockInterface(sb SignedBeaconBlock) (*ethpb.SignedBeaconBlockHeader, error) {
|
|
b := sb.Block()
|
|
if b.IsNil() || b.Body().IsNil() {
|
|
return nil, errors.New("nil block")
|
|
}
|
|
|
|
h, err := BeaconBlockHeaderFromBlockInterface(b)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get block header of block")
|
|
}
|
|
return ðpb.SignedBeaconBlockHeader{
|
|
Header: h,
|
|
Signature: sb.Signature(),
|
|
}, nil
|
|
}
|
|
|
|
// BeaconBlockHeaderFromBlock function to retrieve block header from block.
|
|
func BeaconBlockHeaderFromBlock(block *ethpb.BeaconBlock) (*ethpb.BeaconBlockHeader, error) {
|
|
if block.Body == nil {
|
|
return nil, errors.New("nil block body")
|
|
}
|
|
|
|
bodyRoot, err := block.Body.HashTreeRoot()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get body root of block")
|
|
}
|
|
return ðpb.BeaconBlockHeader{
|
|
Slot: block.Slot,
|
|
ProposerIndex: block.ProposerIndex,
|
|
ParentRoot: block.ParentRoot,
|
|
StateRoot: block.StateRoot,
|
|
BodyRoot: bodyRoot[:],
|
|
}, nil
|
|
}
|
|
|
|
// BeaconBlockHeaderFromBlockInterface function to retrieve block header from block.
|
|
func BeaconBlockHeaderFromBlockInterface(block BeaconBlock) (*ethpb.BeaconBlockHeader, error) {
|
|
if block.Body().IsNil() {
|
|
return nil, errors.New("nil block body")
|
|
}
|
|
|
|
bodyRoot, err := block.Body().HashTreeRoot()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get body root of block")
|
|
}
|
|
return ðpb.BeaconBlockHeader{
|
|
Slot: block.Slot(),
|
|
ProposerIndex: block.ProposerIndex(),
|
|
ParentRoot: block.ParentRoot(),
|
|
StateRoot: block.StateRoot(),
|
|
BodyRoot: bodyRoot[:],
|
|
}, nil
|
|
}
|