diff --git a/validator_client/src/preparation_service.rs b/validator_client/src/preparation_service.rs index b138d3e4ee..6dc8e7d56e 100644 --- a/validator_client/src/preparation_service.rs +++ b/validator_client/src/preparation_service.rs @@ -285,6 +285,9 @@ impl PreparationService { fn collect_validator_registration_keys(&self) -> Vec { self.collect_proposal_data(|pubkey, proposal_data| { + // Ignore fee recipients for keys without indices, they are inactive. + proposal_data.validator_index?; + // We don't log for missing fee recipients here because this will be logged more // frequently in `collect_preparation_data`. proposal_data.fee_recipient.and_then(|fee_recipient| {