@@ -225,13 +225,10 @@ impl<const N_SNARKS: usize> Circuit<Fr> for BatchCircuit<N_SNARKS> {
225225 let loader: Rc < Halo2Loader < G1Affine , EccChip < Fr , FpConfig < Fr , Fq > > > > =
226226 Halo2Loader :: new ( ecc_chip, ctx) ;
227227
228- //
229228 // extract the assigned values for
230229 // - instances which are the public inputs of each chunk (prefixed with 12
231230 // instances from previous accumulators)
232231 // - new accumulator
233- //
234- log:: debug!( "aggregation: chunk aggregation" ) ;
235232 let (
236233 assigned_aggregation_instances,
237234 acc,
@@ -269,29 +266,21 @@ impl<const N_SNARKS: usize> Circuit<Fr> for BatchCircuit<N_SNARKS> {
269266 // fixed set of values expected.
270267 //
271268 // First we load the constants.
272- log:: info!( "populating constants" ) ;
273269 let mut preprocessed_polys_halo2 = Vec :: with_capacity ( 7 ) ;
274270 let mut preprocessed_polys_sp1 = Vec :: with_capacity ( 7 ) ;
275- for ( i, & preprocessed_poly) in
276- self . halo2_protocol . preprocessed . iter ( ) . enumerate ( )
277- {
278- log:: debug!( "load const {i}" ) ;
271+ for & preprocessed_poly in self . halo2_protocol . preprocessed . iter ( ) {
279272 preprocessed_polys_halo2. push (
280273 config
281274 . ecc_chip ( )
282275 . assign_constant_point ( & mut ctx, preprocessed_poly) ,
283276 ) ;
284- log:: debug!( "load const {i} OK" ) ;
285277 }
286- for ( i, & preprocessed_poly) in self . sp1_protocol . preprocessed . iter ( ) . enumerate ( )
287- {
288- log:: debug!( "load const (sp1) {i}" ) ;
278+ for & preprocessed_poly in self . sp1_protocol . preprocessed . iter ( ) {
289279 preprocessed_polys_sp1. push (
290280 config
291281 . ecc_chip ( )
292282 . assign_constant_point ( & mut ctx, preprocessed_poly) ,
293283 ) ;
294- log:: debug!( "load const (sp1) {i} OK" ) ;
295284 }
296285 let transcript_init_state_halo2 = config
297286 . ecc_chip ( )
@@ -300,15 +289,13 @@ impl<const N_SNARKS: usize> Circuit<Fr> for BatchCircuit<N_SNARKS> {
300289 . gate ( )
301290 . assign_constant ( & mut ctx, self . halo2_protocol . init_state )
302291 . expect ( "IntegerInstructions::assign_constant infallible" ) ;
303- log:: debug!( "load transcript OK" ) ;
304292 let transcript_init_state_sp1 = config
305293 . ecc_chip ( )
306294 . field_chip ( )
307295 . range ( )
308296 . gate ( )
309297 . assign_constant ( & mut ctx, self . sp1_protocol . init_state )
310298 . expect ( "IntegerInstructions::assign_constant infallible" ) ;
311- log:: info!( "populating constants OK" ) ;
312299
313300 // Commitments to the preprocessed polynomials.
314301 //
@@ -378,7 +365,6 @@ impl<const N_SNARKS: usize> Circuit<Fr> for BatchCircuit<N_SNARKS> {
378365
379366 ctx. print_stats ( & [ "protocol check" ] ) ;
380367
381- log:: debug!( "batching: assigning barycentric" ) ;
382368 let barycentric = config. blob_consistency_config . assign_barycentric (
383369 & mut ctx,
384370 & self . batch_hash . blob_bytes ,
0 commit comments