Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratyush committed Feb 1, 2025
1 parent d2df2b1 commit b8032cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion relations/src/gr1cs/constraint_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ impl<F: Field> ConstraintSystem<F> {
if let Some(unsatisfied_constraint) =
predicate.which_constraint_is_unsatisfied(self)
{
let mut trace;
let trace;
#[cfg(feature = "std")]
{
trace = self.predicate_traces[label][unsatisfied_constraint]
Expand Down
2 changes: 1 addition & 1 deletion relations/src/gr1cs/predicate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pub mod polynomial_constraint;

use super::{Constraint, ConstraintSystem, LcIndex, LinearCombination, Matrix};
use super::{Constraint, ConstraintSystem, LcIndex, Matrix};
use crate::utils::{error::SynthesisError::ArityMismatch, variable::Variable::SymbolicLc};
use ark_ff::Field;
use ark_serialize::{CanonicalSerialize, Compress, SerializationError};
Expand Down
2 changes: 1 addition & 1 deletion snark/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! This crate contains traits that define the basic behaviour of SNARKs.
#![cfg_attr(not(feature = "std"), no_std)]
#![no_std]
#![warn(
unused,
future_incompatible,
Expand Down

0 comments on commit b8032cc

Please sign in to comment.