From f220e133c5d3a7963e2962227772ea0688db6eeb Mon Sep 17 00:00:00 2001 From: EETagent Date: Fri, 11 Nov 2022 20:42:11 +0100 Subject: [PATCH] refactor: remove debug print --- recovery/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/recovery/src/main.rs b/recovery/src/main.rs index d9a963e..14a346c 100644 --- a/recovery/src/main.rs +++ b/recovery/src/main.rs @@ -147,8 +147,6 @@ async fn main() -> Result<(), Box> { let input = sub_matches.get_one::("input").unwrap(); let key = sub_matches.get_one::("key").unwrap(); - println!("Decrypt: {}", decrypt); - let result = if !*decrypt { portfolio_core::crypto::encrypt_password_with_recipients(input, &vec![key]).await? } else {