Skip to content

Commit

Permalink
fix(blevm): groth16 instead of core proofs
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxcanfly committed Feb 3, 2025
1 parent 7210579 commit cc874a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provers/blevm/blevm-prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl BlockProver {
// Generate and return the proof
let client = ProverClient::from_env();
let (pk, _) = client.setup(self.prover_config.elf_bytes);
let proof = client.prove(&pk, &stdin).core().run()?;
let proof = client.prove(&pk, &stdin).groth16().run()?;

bincode::serialize(&proof).map_err(|e| e.into())
}
Expand Down

0 comments on commit cc874a4

Please sign in to comment.