Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
chore: remove unwanted printing to console
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Aug 22, 2023
1 parent 65ef893 commit 55a64e8
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/barretenberg_shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ impl VerifyCommand {
}

let output = command.output().expect("Failed to execute command");
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
output.status.success()
}
}
Expand Down Expand Up @@ -81,15 +79,11 @@ impl ContractCommand {
.arg("-o")
.arg(self.path_to_contract_output);

println!("{:?}", command);

if self.verbose {
command.arg("-v");
}

let output = command.output().expect("Failed to execute command");
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
if output.status.success() {
Ok(())
} else {
Expand Down Expand Up @@ -176,8 +170,6 @@ impl ProveCommand {
command.arg("-r");
}

println!("{:?}", command.output());

let output = command.output().expect("Failed to execute command");

if output.status.success() {
Expand Down

0 comments on commit 55a64e8

Please sign in to comment.