Skip to content

Commit

Permalink
🔥 Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sheagrief committed Apr 2, 2024
1 parent 41eb3f4 commit 582ec42
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/circuits/bit_decomposition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ impl ConstraintSynthesizer<MFr> for BitDecompositionCircuit<MFr> {

let bits = a_var.to_bits_le()?;

// a_var.is_zero()?.enforce_equal(&MpcBoolean::TRUE)?;

Ok(())
}
}
Expand All @@ -34,8 +32,6 @@ impl ConstraintSynthesizer<Fr> for BitDecompositionCircuit<Fr> {
fn generate_constraints(self, cs: ConstraintSystemRef<Fr>) -> Result<(), SynthesisError> {
let a_var = FpVar::new_witness(cs.clone(), || Ok(self.a))?;

// a_var.is_zero()?.enforce_equal(&Boolean::TRUE)?;

let bits = a_var.to_bits_le()?;

Ok(())
Expand Down

0 comments on commit 582ec42

Please sign in to comment.