From ecc404c82f21126ad3b7acbce8cbf66c2343d783 Mon Sep 17 00:00:00 2001 From: ljedrz Date: Thu, 13 Feb 2025 14:59:43 +0100 Subject: [PATCH] clippy: fix one lint Signed-off-by: ljedrz --- synthesizer/src/vm/helpers/history.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthesizer/src/vm/helpers/history.rs b/synthesizer/src/vm/helpers/history.rs index 710c69bb47..d453b4340a 100644 --- a/synthesizer/src/vm/helpers/history.rs +++ b/synthesizer/src/vm/helpers/history.rs @@ -36,7 +36,7 @@ pub fn history_directory_path(network: u16, storage_mode: &StorageMode) -> PathB }; // Obtain the path to the ledger. - let mut path = aleo_ledger_dir(network, &storage_mode); + let mut path = aleo_ledger_dir(network, storage_mode); // Go to the folder right above the ledger. path.pop(); // Append the history directory's name.