Skip to content

Commit

Permalink
fix(cli): 🩹 Change proofs output name for cleaner structure
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiralOutDotEu committed Nov 3, 2023
1 parent d94364f commit 474e6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/proofs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ where
);
}

let output_file_name = format!("{}{}", file_name, "_proofs.json");
let output_file_name = format!("{}{}", file_name, ".proofs.json");
File::create(&output_file_name).map_err(|e| e.to_string())?;

let output_content = serde_json::to_string(&proofs_map).map_err(|e| e.to_string())?;
Expand Down

0 comments on commit 474e6cf

Please sign in to comment.