Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fborello-lambda committed Dec 30, 2024
1 parent b50a355 commit 21fee22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/l2/utils/prover/proving_systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl Risc0Proof {
Err(_) => vec![0u8; 4],
};

let mut image_id = [0_u32; Self::SELECTOR_SIZE];
let mut image_id = [0_u32; Self::IMAGE_ID_SIZE];
for (i, b) in image_id.iter_mut().enumerate() {
*b = *self.prover_id.get(i).ok_or(ProverServerError::Custom(
"Failed to get image_id in handle_proof_submission()".to_owned(),
Expand Down

0 comments on commit 21fee22

Please sign in to comment.