mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
20803b4c9d
* revert using ssz.TreeHash * gazelle
23 lines
643 B
Go
23 lines
643 B
Go
package hashutil
|
|
|
|
import (
|
|
"github.com/gogo/protobuf/proto"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
)
|
|
|
|
// HashBeaconBlock hashes the full block without the proposer signature.
|
|
// The proposer signature is ignored in order obtain the same block hash used
|
|
// as the "block_root" property in the proposer signature data.
|
|
func HashBeaconBlock(bb *pb.BeaconBlock) ([32]byte, error) {
|
|
// Ignore the proposer signature by temporarily deleting it.
|
|
sig := bb.Signature
|
|
bb.Signature = nil
|
|
defer func() { bb.Signature = sig }()
|
|
|
|
data, err := proto.Marshal(bb)
|
|
if err != nil {
|
|
return [32]byte{}, err
|
|
}
|
|
return Hash(data), nil
|
|
}
|