diff --git a/src/signing/petition_types/petition_entity.rs b/src/signing/petition_types/petition_entity.rs index 471bcf7c..8ebf4ad4 100644 --- a/src/signing/petition_types/petition_entity.rs +++ b/src/signing/petition_types/petition_entity.rs @@ -94,12 +94,12 @@ impl PetitionEntity { .collect::>() } - pub fn all_neglected_factor_instance(&self) -> IndexSet { + pub fn all_neglected_factor_instances(&self) -> IndexSet { self.union_of(|f| f.all_neglected()) } pub fn all_neglected_factor_sources(&self) -> IndexSet { - self.all_neglected_factor_instance() + self.all_neglected_factor_instances() .into_iter() .map(|n| n.as_neglected_factor()) .collect::>()