@@ -1162,7 +1162,7 @@ fn verify_main_pod_circuit(
11621162 let measure = measure_gates_begin ! ( builder, "MainPodVerify" ) ;
11631163 // 1a. Verify all input signed pods
11641164 for signed_pod in & main_pod. signed_pods {
1165- verify_signed_pod_circuit ( builder, & signed_pod) ?;
1165+ verify_signed_pod_circuit ( builder, signed_pod) ?;
11661166 builder. assert_one ( signed_pod. signature . enabled . target ) ;
11671167 }
11681168
@@ -1200,18 +1200,18 @@ fn verify_main_pod_circuit(
12001200 } ;
12011201
12021202 for self_st in input_pod_self_statements {
1203- let normalized_st = normalize_statement_circuit ( params, builder, & self_st, & id_value) ;
1203+ let normalized_st = normalize_statement_circuit ( params, builder, self_st, & id_value) ;
12041204 statements. push ( normalized_st) ;
12051205 }
1206- let id = calculate_id_circuit ( params, builder, & input_pod_self_statements) ;
1206+ let id = calculate_id_circuit ( params, builder, input_pod_self_statements) ;
12071207 builder. connect_hashes ( expected_id, id) ;
12081208
12091209 //
12101210 // Verify that all input pod proofs use verifier data from the public input VD
12111211 // array. This requires merkle proofs
12121212 //
12131213
1214- verify_merkle_proof_circuit ( builder, & vd_mt_proof) ;
1214+ verify_merkle_proof_circuit ( builder, vd_mt_proof) ;
12151215
12161216 // ensure that mt_proof is enabled
12171217 let true_targ = builder. _true ( ) ;
@@ -1250,7 +1250,7 @@ fn verify_main_pod_circuit(
12501250 . merkle_proofs
12511251 . iter ( )
12521252 . map ( |mt_proof| {
1253- verify_merkle_proof_circuit ( builder, & mt_proof) ;
1253+ verify_merkle_proof_circuit ( builder, mt_proof) ;
12541254 MerkleClaimTarget :: from ( mt_proof. clone ( ) )
12551255 } )
12561256 . collect_vec ( ) ;
@@ -1335,15 +1335,15 @@ impl MainPodVerifyTarget {
13351335 input_pods_self_statements : ( 0 ..params. max_input_recursive_pods )
13361336 . map ( |_| {
13371337 ( 0 ..params. max_input_pods_public_statements )
1338- . map ( |_| builder. add_virtual_statement ( & params) )
1338+ . map ( |_| builder. add_virtual_statement ( params) )
13391339 . collect_vec ( )
13401340 } )
13411341 . collect ( ) ,
13421342 input_statements : ( 0 ..params. max_statements )
1343- . map ( |_| builder. add_virtual_statement ( & params) )
1343+ . map ( |_| builder. add_virtual_statement ( params) )
13441344 . collect ( ) ,
13451345 operations : ( 0 ..params. max_statements )
1346- . map ( |_| builder. add_virtual_operation ( & params) )
1346+ . map ( |_| builder. add_virtual_operation ( params) )
13471347 . collect ( ) ,
13481348 merkle_proofs : ( 0 ..params. max_merkle_proofs_containers )
13491349 . map ( |_| {
0 commit comments