Skip to content

Commit

Permalink
Fix proving system match
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbosio committed Sep 25, 2024
1 parent 97dbced commit 26497cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batcher/aligned/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -624,13 +624,13 @@ fn verification_data_from_args(args: &SubmitArgs) -> Result<VerificationData, Su
ProvingSystemId::Mina => {
pub_input = Some(read_file_option(
"--public_input",
args.pub_input_file_name,
args.pub_input_file_name.clone(),
)?)
}
ProvingSystemId::MinaAccount => {
pub_input = Some(read_file_option(
"--public_input",
args.pub_input_file_name,
args.pub_input_file_name.clone(),
)?)
}
}
Expand Down

0 comments on commit 26497cf

Please sign in to comment.