15 lines
383 B
Python
Raw Normal View History

2019-05-15 19:31:02 +02:00
from eth2spec.utils.bls import bls_sign
from eth2spec.utils.minimal_ssz import signing_root
2019-05-30 22:57:18 +02:00
def sign_block_header(spec, state, header, privkey):
domain = spec.get_domain(
2019-05-15 19:31:02 +02:00
state=state,
domain_type=spec.DOMAIN_BEACON_PROPOSER,
)
header.signature = bls_sign(
message_hash=signing_root(header),
privkey=privkey,
domain=domain,
)