Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
distributedstatemachine committed Sep 19, 2023
1 parent a4449e5 commit 26a692a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum-consensus/src/capella/block_processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub fn process_bls_to_execution_change<
compute_domain(BlsToExecutionChange, None, Some(state.genesis_validators_root), context)?;
let signing_root = compute_signing_root(address_change, domain)?;
let pk: &BlsPublicKey = &address_change.message.from_bls_public_key;
assert!(verify_signature(&pk, signing_root.as_ref(), &address_change.signature,).is_ok());
assert!(verify_signature(pk, signing_root.as_ref(), &address_change.signature,).is_ok());
let withdrawal_credentials = vec![ETH1_ADDRESS_WITHDRAWAL_PREFIX];

let withdrawal_credentials_array: [u8; 32] =
Expand Down

0 comments on commit 26a692a

Please sign in to comment.