11 lines
376 B
Python
11 lines
376 B
Python
from eth2spec.utils import bls
|
|
|
|
|
|
def sign_voluntary_exit(spec, state, voluntary_exit, privkey):
|
|
domain = spec.get_domain(state, spec.DOMAIN_VOLUNTARY_EXIT, voluntary_exit.epoch)
|
|
signing_root = spec.compute_signing_root(voluntary_exit, domain)
|
|
return spec.SignedVoluntaryExit(
|
|
message=voluntary_exit,
|
|
signature=bls.Sign(privkey, signing_root)
|
|
)
|