Skip to content

Commit

Permalink
fix: Update try_install_plonk_bn254_artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
wwared committed Oct 21, 2024
1 parent e621f9c commit 7f6643d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aptos/light-client/benches/e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ fn main() {
set_snark_environment();

// Install PLONK artifacts.
try_install_plonk_bn254_artifacts(false);
try_install_plonk_bn254_artifacts();

// Execute snark generation for epoch change.
let start_epoch_change_snark_proving = Instant::now();
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/epoch_change.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ mod test {
let stdin = generate_stdin(trusted_state.as_slice(), &epoch_change_proof);

// Install PLONK artifacts.
try_install_plonk_bn254_artifacts(false);
try_install_plonk_bn254_artifacts();

let start = Instant::now();
println!("Starting generation of prove_epoch_change proof...");
Expand Down
2 changes: 1 addition & 1 deletion aptos/light-client/src/inclusion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ mod test {
);

// Install PLONK artifacts.
try_install_plonk_bn254_artifacts(false);
try_install_plonk_bn254_artifacts();

let start = Instant::now();
println!("Starting generation of inclusion proof...");
Expand Down
2 changes: 1 addition & 1 deletion aptos/proof-server/benches/proof_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fn main() -> Result<(), anyhow::Error> {

if final_snark {
// Install PLONK artifacts.
try_install_plonk_bn254_artifacts(false);
try_install_plonk_bn254_artifacts();
}

// Start secondary server
Expand Down

0 comments on commit 7f6643d

Please sign in to comment.