Skip to content

Commit

Permalink
bump prover and fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
roynalnaruto committed Jul 11, 2024
1 parent 292f5ab commit c95d144
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 22 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions integration/tests/batch_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ fn test_batches_with_each_chunk_num_prove_verify() {
output_dir.push(format!("batch_{}", len));
fs::create_dir_all(&output_dir).unwrap();
let batch = BatchProvingTask {
version: batch.version,
l1_message_popped: batch.l1_message_popped,
total_l1_message_popped: batch.total_l1_message_popped,
last_block_timestamp: batch.last_block_timestamp,
batch_index: batch.batch_index,
parent_batch_hash: batch.parent_batch_hash,
batch_header: batch.batch_header,
chunk_proofs: batch.chunk_proofs[..len].to_vec(),
};
prove_and_verify_batch(&output_dir.to_string_lossy(), &mut batch_prover, batch);
Expand Down
7 changes: 1 addition & 6 deletions integration/tests/e2e_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,8 @@ fn gen_batch_proving_task(

(
BatchProvingTask {
version: batch_header.version,
batch_index: batch_header.batch_index,
l1_message_popped: batch_header.l1_message_popped,
total_l1_message_popped: batch_header.total_l1_message_popped,
parent_batch_hash: batch_header.parent_batch_hash,
last_block_timestamp: batch_header.last_block_timestamp,
chunk_proofs,
batch_header,
},
batch_header,
)
Expand Down

0 comments on commit c95d144

Please sign in to comment.