Skip to content

Commit

Permalink
Requested PR changes for #310 (2)
Browse files Browse the repository at this point in the history
- Now writes `circuits/` to `zero_bin` and not inside `tools/`.
  • Loading branch information
BGluth committed Jun 25, 2024
1 parent 82aa9e1 commit 7617248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zero_bin/common/src/prover_state/persistence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,6 @@ fn prover_to_disk(
/// current directory.
fn relative_circuit_dir_path() -> String {
env::var(CARGO_WORKSPACE_DIR_ENV)
.map(|p| format!("{}tools/{}", p, CIRCUITS_DIR))
.map(|p| format!("{}/{}", p, CIRCUITS_DIR))
.unwrap_or_else(|_| CIRCUITS_DIR.to_string())
}

0 comments on commit 7617248

Please sign in to comment.