Sign BlsToExecutionChange w/ GENESIS_FORK_VERSION

This commit is contained in:
Mark Mackey 2023-01-13 10:47:19 -06:00
parent d0368b0459
commit d9dd9b43ee

View File

@ -161,10 +161,9 @@ pub fn bls_execution_change_signature_set<'a, T: EthSpec>(
signed_address_change: &'a SignedBlsToExecutionChange,
spec: &'a ChainSpec,
) -> Result<SignatureSet<'a>> {
let domain = spec.get_domain(
state.current_epoch(),
let domain = spec.compute_domain(
Domain::BlsToExecutionChange,
&state.fork(),
spec.genesis_fork_version,
state.genesis_validators_root(),
);
let message = signed_address_change.message.signing_root(domain);