diff --git a/common/eth2/src/types.rs b/common/eth2/src/types.rs index c20e723ddd..c945e09619 100644 --- a/common/eth2/src/types.rs +++ b/common/eth2/src/types.rs @@ -726,7 +726,7 @@ impl AttesterData { self.slot == attestation_data.slot && self.committee_index == attestation_data.index } else { // After electra `attestation_data.index` is set to 0 and does not match the duties - self.slot == attestation_data.index + self.slot == attestation_data.slot } } }