Skip to content

Commit

Permalink
Fix for electra slashings processing
Browse files Browse the repository at this point in the history
  • Loading branch information
povi committed Dec 4, 2024
1 parent d7b8e80 commit 2c16c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions transition_functions/src/electra/epoch_processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use crate::{
altair::{
self, EpochDeltasForTransition, EpochReport, ValidatorSummary as AltairValidatorSummary,
},
bellatrix, unphased,
unphased,
unphased::{SlashingPenalties, ValidatorSummary},
};

Expand Down Expand Up @@ -78,7 +78,7 @@ pub fn process_epoch(config: &Config, state: &mut ElectraBeaconState<impl Preset

unphased::process_rewards_and_penalties(state, epoch_deltas);
process_registry_updates(config, state, summaries.as_mut_slice())?;
bellatrix::process_slashings::<_, ()>(state, summaries);
process_slashings::<_, ()>(state, summaries);
unphased::process_eth1_data_reset(state);
process_pending_deposits(config, state)?;
process_pending_consolidations(state)?;
Expand Down

0 comments on commit 2c16c66

Please sign in to comment.