Skip to content

Commit

Permalink
🚨 Resolve formatting in r1cs-std caused by rustc update
Browse files Browse the repository at this point in the history
  • Loading branch information
sheagrief committed Oct 21, 2023
1 parent b217bd6 commit 15f1009
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arkworks/r1cs-std/src/groups/curves/twisted_edwards/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ where
Ok(ge) => {
let ge: TEAffine<P> = ge.into();
(Ok(ge.x), Ok(ge.y))
}
},
_ => (
Err(SynthesisError::AssignmentMissing),
Err(SynthesisError::AssignmentMissing),
Expand Down Expand Up @@ -335,7 +335,7 @@ where
.iter()
.zip(segment_powers.borrow())
{
let base_power = base_power.borrow();
let base_power = base_power;
let mut acc_power = *base_power;
let mut coords = vec![];
for _ in 0..4 {
Expand Down Expand Up @@ -654,7 +654,7 @@ where
ge.enforce_equal(&ge)?;
Ok(ge)
}
}
},
}
}
}
Expand Down

0 comments on commit 15f1009

Please sign in to comment.