diff --git a/eth2/operation_pool/src/lib.rs b/eth2/operation_pool/src/lib.rs index 877f46bf9b..0f85215e9e 100644 --- a/eth2/operation_pool/src/lib.rs +++ b/eth2/operation_pool/src/lib.rs @@ -210,6 +210,7 @@ impl OperationPool { .map(|s| s.proposer_index) .collect::>(); + let epoch = state.current_epoch(); let attester_slashings = self .attester_slashings .read() @@ -222,7 +223,7 @@ impl OperationPool { // Take all slashings that will slash 1 or more validators. let slashed_validators = get_slashable_indices_modular(state, slashing, |index, validator| { - validator.slashed || to_be_slashed.contains(&index) + validator.is_slashable_at(epoch) && !to_be_slashed.contains(&index) }); // Extend the `to_be_slashed` set so subsequent iterations don't try to include