Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
distributedstatemachine committed Sep 20, 2023
1 parent b82f491 commit 15d607d
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions ethereum-consensus/src/capella/block_processing.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
use crate::{
capella::{
compute_domain, compute_signing_root, compute_timestamp_at_slot, get_current_epoch,
get_randao_mix, process_attestation, process_attester_slashing, process_block_header,
process_deposit, process_eth1_data, process_proposer_slashing, process_randao,
process_sync_aggregate, process_voluntary_exit, BeaconBlock, BeaconBlockBody, BeaconState,
BlsPublicKey, DomainType, ExecutionEngine, ExecutionPayload, ExecutionPayloadHeader,
NewPayloadRequest, SignedBlsToExecutionChange,
compute_domain, compute_timestamp_at_slot, get_current_epoch, get_randao_mix,
process_attestation, process_attester_slashing, process_block_header, process_deposit,
process_eth1_data, process_proposer_slashing, process_randao, process_sync_aggregate,
process_voluntary_exit, BeaconBlock, BeaconBlockBody, BeaconState, BlsPublicKey,
DomainType, ExecutionEngine, ExecutionPayload, ExecutionPayloadHeader, NewPayloadRequest,
SignedBlsToExecutionChange,
},
crypto::{hash, verify_signature},
primitives::{BLS_WITHDRAWAL_PREFIX, ETH1_ADDRESS_WITHDRAWAL_PREFIX},
signing::verify_signed_data,
ssz::ByteVector,
Expand Down Expand Up @@ -42,7 +41,7 @@ pub fn process_bls_to_execution_change<
BYTES_PER_LOGS_BLOOM,
MAX_EXTRA_DATA_BYTES,
>,
signed_address_change: &mut SignedBlsToExecutionChange,
signed_address_change: &SignedBlsToExecutionChange,
context: &Context,
) -> Result<()> {
let address_change = &signed_address_change.message;
Expand Down

0 comments on commit 15d607d

Please sign in to comment.