Skip to content

Commit bde3b89

Browse files
committed
fix: dump YUL code for verifier
1 parent 266298e commit bde3b89

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

prover/src/utils/evm.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::path::Path;
1+
use std::path::{Path, PathBuf};
22

33
use halo2_proofs::{
44
halo2curves::bn256::{Bn256, Fr, G1Affine},
@@ -24,12 +24,15 @@ pub fn gen_evm_verifier<C: CircuitExt<Fr>>(
2424
evm_proof: &EvmProof,
2525
output_dir: Option<&str>,
2626
) -> Result<(), ProverError> {
27+
// YUL contract code will be dumped to the following path.
28+
let yul_path = output_dir.map(|dir| PathBuf::from(dir).join("evm_verifier.yul"));
29+
2730
// Generate deployment code and dump YUL file.
2831
let deployment_code = snark_verifier_sdk::gen_evm_verifier::<C, Kzg<Bn256, Bdfg21>>(
2932
params,
3033
vk,
3134
evm_proof.num_instance.clone(),
32-
None,
35+
yul_path.as_deref(),
3336
);
3437

3538
// Write the contract binary if an output directory was specified.

0 commit comments

Comments
 (0)