Skip to content

Commit

Permalink
Merge pull request #2 from Lagrange-Labs/better-logs
Browse files Browse the repository at this point in the history
better messaging
  • Loading branch information
kaisbaccour authored May 28, 2024
2 parents ededbae + 7180bee commit 8a70e83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lgn-provers/src/params/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ impl ParamsLoader {
let reader = std::io::BufReader::new(file);
bincode::deserialize_from(reader).map_err(Into::into)
}
Err(err) => {
info!("Failed to load params from local storage: {err}");
Err(_) => {
info!("public params are not locally stored yet");

let params = Self::download_file(base_url, file_name)?;
if !skip_store {
Expand Down

0 comments on commit 8a70e83

Please sign in to comment.