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

Commit 2456ce1

Browse files
committed
fix prover on servers without solc
1 parent ad16787 commit 2456ce1

File tree

1 file changed

+1
-1
lines changed
  • prover/src/common/prover

1 file changed

+1
-1
lines changed

prover/src/common/prover/evm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ impl Prover {
6767
let proof = gen_evm_proof_shplonk(params, pk, circuit, instances.clone(), rng);
6868
let evm_proof = EvmProof::new(proof, &instances, num_instance, Some(pk))?;
6969

70-
if !read_env_var("SCROLL_PROVER_DUMP_YUL", false) {
70+
if read_env_var("SCROLL_PROVER_DUMP_YUL", false) {
7171
crate::evm::gen_evm_verifier::<C>(params, pk.get_vk(), &evm_proof, output_dir);
7272
}
7373

0 commit comments

Comments
 (0)