15 lines
432 B
Python
15 lines
432 B
Python
from eth2spec.utils.bls import bls_sign
|
|
from eth2spec.utils.ssz.ssz_impl import hash_tree_root
|
|
|
|
|
|
def sign_block_header(spec, state, header, privkey):
|
|
domain = spec.get_domain(
|
|
state=state,
|
|
domain_type=spec.DOMAIN_BEACON_PROPOSER,
|
|
)
|
|
return spec.SignedBeaconBlockHeader(message=header, signature=bls_sign(
|
|
message_hash=hash_tree_root(header),
|
|
privkey=privkey,
|
|
domain=domain,
|
|
))
|