Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 1a7da0e

Browse files
committed
minor fix
1 parent 7bb2795 commit 1a7da0e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

integration/tests/e2e_tests.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -503,11 +503,10 @@ fn log_batch_pi(trace_paths: &[String]) {
503503
*/
504504

505505
fn dump_chunk_protocol(batch: &BatchProvingTask, output_dir: &str) {
506-
// Dump chunk-procotol to "chunk_chunk_0.protocol" for batch proving.
507-
batch
508-
.chunk_proofs
509-
.first()
510-
.unwrap()
511-
.dump(output_dir, "0")
512-
.unwrap();
506+
// Dump chunk-procotol to "protocol_chunk_{halo2,sp1}.protocol" for batch proving.
507+
let protocol = batch.chunk_proofs.first().unwrap();
508+
509+
protocol.dump(output_dir, "halo2").unwrap();
510+
// adhoc!
511+
protocol.dump(output_dir, "sp1").unwrap();
513512
}

0 commit comments

Comments
 (0)