Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adr1anh committed Oct 10, 2023
1 parent 939777f commit 49e36fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion halo2_proofs/src/protostar/accumulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl<C: CurveAffine> Accumulator<C> {
let mut error_poly_vanish = error_poly.clone();
// subtract (1-t)e0 + te1 = e0 + t(e1-e0)
error_poly_vanish[0] -= error0;
error_poly_vanish[1] -= error1-error0;
error_poly_vanish[1] -= error1 - error0;
quotient_by_boolean_vanishing(&error_poly_vanish)
};

Expand Down
2 changes: 1 addition & 1 deletion halo2_proofs/src/protostar/constraints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub(crate) mod expression;
pub(crate) mod paired;
pub(crate) mod polynomial;

/// Used to store references of the variables referenced by an expression.
/// Used to store references of the variables referenced by an expression.
/// TODO: Merge with Verifier and Prover accumulator
pub struct Data<T: QueryType> {
fixed: Vec<T::Fixed>,
Expand Down

0 comments on commit 49e36fa

Please sign in to comment.