Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemka374 committed Jan 24, 2025
1 parent bdf7417 commit 9daf01e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions prover/crates/lib/keystore/src/keystore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ impl Keystore {
ProverServiceDataType::FinalizationHints => self
.basedir
.join(format!("finalization_hints_{}.bin", name)),
ProverServiceDataType::PlonkSetupData => {
self.setup_data_path.join(format!("plonk_setup_{}_data.bin", name))
}
ProverServiceDataType::FflonkSetupData => {
self.setup_data_path.join(format!("fflonk_setup_{}_data.bin", name))
}
ProverServiceDataType::PlonkSetupData => self
.setup_data_path
.join(format!("plonk_setup_{}_data.bin", name)),
ProverServiceDataType::FflonkSetupData => self
.setup_data_path
.join(format!("fflonk_setup_{}_data.bin", name)),
ProverServiceDataType::SnarkVerificationKey => {
self.basedir.join(format!("verification_{}_key.json", name))
}
Expand Down

0 comments on commit 9daf01e

Please sign in to comment.