Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Feb 27, 2024
1 parent 5ce0d0c commit b1f49bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proto-compiler/src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ pub(crate) fn save_state(dir: &Path, commitish: &str) {
pub(crate) fn check_state(dir: &Path, commitish: &str) -> bool {
let state_file = PathBuf::from(&dir).join("download.state");

match read_to_string(&state_file) {
match read_to_string(state_file) {
Ok(content) => {
println!(
"[info] => Found previously downloaded Tenderdash {}.",
Expand Down

0 comments on commit b1f49bd

Please sign in to comment.