Skip to content

Commit

Permalink
chore: use fast proofs with sha256
Browse files Browse the repository at this point in the history
  • Loading branch information
cfcosta committed Jul 28, 2024
1 parent 485fb27 commit 41260bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/src/bin/mugraph-example-generate-proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ fn main() -> Result<()> {
.map_err(|_| Error::ExecutorInitialize)?;

let prover = default_prover();
let opts = ProverOpts::fast();

let receipt = prover
.prove_with_opts(env, FISSION_ELF, &ProverOpts::succinct())
.prove_with_opts(env, FISSION_ELF, &opts)
.map_err(|e| {
println!("Error: {}", e);
Error::ProofGenerate
Expand Down

0 comments on commit 41260bc

Please sign in to comment.