diff --git a/rs/consensus/utils/src/lib.rs b/rs/consensus/utils/src/lib.rs index 8aac46fe50e..d63e43277c8 100644 --- a/rs/consensus/utils/src/lib.rs +++ b/rs/consensus/utils/src/lib.rs @@ -293,7 +293,7 @@ pub fn active_low_threshold_committee( ) -> Option<(Threshold, NiDkgReceivers)> { get_active_data_at(reader, height, |block, height| { get_transcript_data_at_given_summary(block, height, NiDkgTag::LowThreshold, |transcript| { - let transcript = transcript.expect("No active low treshold transcript available"); + let transcript = transcript.expect("No active low threshold transcript available"); ( transcript.threshold.get().get() as usize, transcript.committee.clone(),