Skip to content

Commit

Permalink
Changes verification display
Browse files Browse the repository at this point in the history
  • Loading branch information
brweisz committed May 28, 2024
1 parent 9d423f6 commit 46464af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tooling/backend_interface/src/cli/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ impl VerifyCommand {
.arg(self.vk_path);

let output = command.output()?;
println!("{:?}", string_from_stderr(&output.stderr));
println!("{}", string_from_stderr(&output.stderr));
if output.status.success() {
println!("Verification successful");
}

// We currently do not distinguish between an invalid proof and an error inside the backend.
Ok(output.status.success())
Expand Down

0 comments on commit 46464af

Please sign in to comment.