From c5da582f4f943c2d84f1f0da458d52b0d0bdf662 Mon Sep 17 00:00:00 2001 From: Daniel Lubarov Date: Thu, 29 Jul 2021 12:06:32 -0700 Subject: [PATCH] Logging tweaks --- src/prover.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/prover.rs b/src/prover.rs index 7d209667..865489a0 100644 --- a/src/prover.rs +++ b/src/prover.rs @@ -129,7 +129,7 @@ pub(crate) fn prove, const D: usize>( &gammas, &alphas, ), - "to compute vanishing polys" + "to compute quotient polys" ); // Compute the quotient polynomials, aka `t` in the Plonk paper. @@ -146,7 +146,7 @@ pub(crate) fn prove, const D: usize>( quotient_poly.chunks(degree) }) .collect(), - "to compute quotient polys" + "to split up quotient polys" ); let quotient_polys_commitment = timed!(