This repository was archived by the owner on Apr 18, 2025. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,9 @@ pub struct AggregationConfig {
30
30
/// - accumulator from aggregation (12 elements)
31
31
/// - aggregated public inputs (132 elements):
32
32
/// chain_id ||
33
- /// chunk[0 ].prev_state_root ||
34
- /// chunk[k-1].post_state_root ||
35
- /// chunk[k-1].withdraw_root ||
33
+ /// chunk\[0\ ].prev_state_root ||
34
+ /// chunk\ [k-1\ ].post_state_root ||
35
+ /// chunk\ [k-1\ ].withdraw_root ||
36
36
/// batch_data_hash
37
37
pub instance : Column < Instance > ,
38
38
}
Original file line number Diff line number Diff line change @@ -240,15 +240,15 @@ fn test_two_layer_proof_compression() {
240
240
evm_verify (
241
241
deployment_code,
242
242
compression_circuit. instances ( ) ,
243
- layer_1_proof. clone ( ) ,
243
+ layer_1_proof,
244
244
) ;
245
245
log:: trace!( "layer 1 evm verification finished" ) ;
246
246
247
247
// build the snark for next layer
248
248
let layer_1_snark = gen_snark_shplonk (
249
249
& layer_1_params,
250
250
& layer_1_pk,
251
- compression_circuit. clone ( ) ,
251
+ compression_circuit,
252
252
& mut rng,
253
253
Some ( & path. join ( Path :: new ( "layer_1.snark" ) ) ) ,
254
254
) ;
@@ -309,7 +309,7 @@ fn test_two_layer_proof_compression() {
309
309
evm_verify (
310
310
deployment_code,
311
311
compression_circuit. instances ( ) ,
312
- layer_2_proof. clone ( ) ,
312
+ layer_2_proof,
313
313
) ;
314
314
log:: trace!( "layer 2 evm verification finished" ) ;
315
315
}
You can’t perform that action at this time.
0 commit comments