From 3cf0471038d2587f9053832771041fa2a3472d3a Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:24:48 +0200 Subject: [PATCH] chore: self review --- proto-compiler/src/functions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto-compiler/src/functions.rs b/proto-compiler/src/functions.rs index 5971dc3..59bc118 100644 --- a/proto-compiler/src/functions.rs +++ b/proto-compiler/src/functions.rs @@ -350,7 +350,7 @@ pub(crate) fn check_state(dir: &Path, commitish: &str) -> bool { let expected = commitish.to_string(); - match read_to_string(&state_file) { + match read_to_string(state_file) { Ok(content) => { println!("[info] => Detected Tenderdash version: {}.", content); content == expected