Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin-Ray committed Oct 28, 2024
1 parent 59a5691 commit 266913a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions crates/proof-of-sql/utils/generate-parameters/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ fn main() {

// Confirm that it was set by reading it back
match env::var("BLITZAR_PARTITION_WINDOW_WIDTH") {
Ok(value) => println!(
"Environment variable BLITZAR_PARTITION_WINDOW_WIDTH set to {value}"
),
Ok(value) => println!("Environment variable BLITZAR_PARTITION_WINDOW_WIDTH set to {value}"),
Err(e) => println!("Failed to set environment variable: {e}"),
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ fn we_can_generate_save_and_load_public_setups() {
.expect("Failed to execute command");

// Check the output to make sure the process ran successfully
assert!(
output.status.success(),
"Process failed to run: {output:?}"
);
assert!(output.status.success(), "Process failed to run: {output:?}");

// Check that both Prover and Verifier files exist in the temp directory
let blitzar_handle_path = format!("{temp_path}/blitzar_handle_nu_4.bin");
Expand Down

0 comments on commit 266913a

Please sign in to comment.