Skip to content

Commit

Permalink
chore: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Aug 31, 2023
1 parent 84dc8ee commit 868f8d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/acvm_backend_barretenberg/src/proof_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ impl Backend {
write_to_file(serialized_circuit.as_bytes(), &bytecode_path);

// Create the verification key and write it to the specified path
let vk_path_output = temp_directory.join("vk");
let vk_path = temp_directory.join("vk");
WriteVkCommand {
verbose: false,
crs_path: temp_directory.clone(),
is_recursive,
bytecode_path,
vk_path_output: vk_path_output.clone(),
vk_path_output: vk_path.clone(),
}
.run()
.expect("write vk command failed");
Expand All @@ -154,7 +154,7 @@ impl Backend {
crs_path: temp_directory,
is_recursive,
proof_path,
vk_path: vk_path_output,
vk_path,
}
.run())
}
Expand Down

0 comments on commit 868f8d8

Please sign in to comment.