Skip to content

Commit 0991d0b

Browse files
committed
fix clippy
1 parent c11d117 commit 0991d0b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crates/provers/stark/src/constraints/transition.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ where
117117

118118
// If there is an exemptions period defined for this constraint, the evaluations are calculated directly
119119
// by computing P_exemptions(x) / Zerofier(x)
120+
#[expect(clippy::incompatible_msrv)]
120121
if let Some(exemptions_period) = self.exemptions_period() {
121122
// FIXME: Rather than making this assertions here, it would be better to handle these
122123
// errors or make these checks when the AIR is initialized.
@@ -218,6 +219,7 @@ where
218219
) -> FieldElement<E> {
219220
let end_exemptions_poly = self.end_exemptions_poly(trace_primitive_root, trace_length);
220221

222+
#[expect(clippy::incompatible_msrv)]
221223
if let Some(exemptions_period) = self.exemptions_period() {
222224
debug_assert!(exemptions_period.is_multiple_of(self.period()));
223225

0 commit comments

Comments
 (0)