Skip to content

Commit

Permalink
Use combined file after beacon application for intermediate transform
Browse files Browse the repository at this point in the history
  • Loading branch information
paberr committed Apr 23, 2024
1 parent 5e72e8b commit 2b9a7ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/bin/intermediate_transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use setup_utils::{domain_size, CheckForCorrectness};
use snark_setup_operator::data_structs::Setup;
use snark_setup_operator::setup_filename;
use snark_setup_operator::transcript_data_structs::Transcript;
use snark_setup_operator::utils::COMBINED_FILENAME;
use snark_setup_operator::utils::COMBINED_VERIFIED_POK_AND_CORRECTNESS_NEW_CHALLENGE_FILENAME;
use snark_setup_operator::{
error::VerifyTranscriptError,
utils::{create_full_parameters, remove_file_if_exists},
Expand Down Expand Up @@ -212,7 +212,10 @@ impl IntermediateTransform {
remove_file_if_exists(output_filename)?;
phase2_cli::prepare_phase2(
output_filename,
setup_filename!(COMBINED_FILENAME, setup.setup_id),
setup_filename!(
COMBINED_VERIFIED_POK_AND_CORRECTNESS_NEW_CHALLENGE_FILENAME,
setup.setup_id
),
phase2_size,
&parameters,
if disable_correctness_checks {
Expand Down

0 comments on commit 2b9a7ac

Please sign in to comment.