Skip to content

Commit 71e7c83

Browse files
authored
Merge pull request #533 from viktorking7/main
Fix typos in warnings and comments
2 parents 9a6a3bd + d5cf000 commit 71e7c83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sailfish-types/src/message.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ impl<T: Committable> Message<T, Unchecked> {
299299

300300
// Validate the timeout certificate signatures:
301301
if !crt.is_valid_par(c) {
302-
warn!("invalid timeout certiticate");
302+
warn!("invalid timeout certificate");
303303
return None;
304304
}
305305

@@ -316,7 +316,7 @@ impl<T: Committable> Message<T, Unchecked> {
316316

317317
// Validate the handover certificate signatures:
318318
if !crt.is_valid_par(c) {
319-
warn!("invalid handover certiticate");
319+
warn!("invalid handover certificate");
320320
return None;
321321
}
322322

timeboost-crypto/src/feldman.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ impl<C: CurveGroup> FeldmanVss<C> {
147147
.take(t)
148148
.collect::<Vec<_>>();
149149

150-
// infalliable
150+
// infallible
151151
C::msm(commitment, &powers).expect("bases and scalars shouuld have the same length")
152152
}
153153
}

0 commit comments

Comments
 (0)