Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
moCello committed Oct 16, 2023
1 parent 37cf1b1 commit 30941f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/permutation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ mod test {
let gamma = BlsScalar::random(&mut OsRng);
assert_ne!(gamma, beta);

//1. Compute the permutation polynomial using both methods
// 1. Compute the permutation polynomial using both methods
let [s_sigma_1_poly, s_sigma_2_poly, s_sigma_3_poly, s_sigma_4_poly] =
perm.compute_sigma_polynomials(n, domain);
let (z_vec, numerator_components, denominator_components) =
Expand Down Expand Up @@ -1048,7 +1048,7 @@ mod test {
}
assert_eq!(a_0 * b_0.invert().unwrap(), BlsScalar::one());

//3. Now we perform the two checks that need to be done on the
// 3. Now we perform the two checks that need to be done on the
// permutation polynomial (z)
let z_poly = Polynomial::from_coefficients_vec(domain.ifft(&z_vec));
//
Expand Down

0 comments on commit 30941f2

Please sign in to comment.