Skip to content

Commit

Permalink
fix missing constants
Browse files Browse the repository at this point in the history
  • Loading branch information
namnc committed Jun 27, 2024
1 parent 800e2d4 commit 6e28021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ fn main() -> Result<(), ProgramError> {
// let output_file_path_json = build_output(&output_dir, "circuit", "json");
// File::create(output_file_path_json)?.write_all(serde_json::to_string_pretty(&circuit)?.as_bytes())?;

let output_debug_path_json = build_output(&output_dir, "debug", "json");
File::create(output_debug_path_json)?.write_all(serde_json::to_string_pretty(&compiler)?.as_bytes())?;
// let output_debug_path_json = build_output(&output_dir, "debug", "json");
// File::create(output_debug_path_json)?.write_all(serde_json::to_string_pretty(&compiler)?.as_bytes())?;

let output_file_path = build_output(&output_dir, "circuit_info", "json");
File::create(output_file_path)?.write_all(to_string_pretty(&circuit.info)?.as_bytes())?;
Expand Down

0 comments on commit 6e28021

Please sign in to comment.