Removed some debugging code

This commit is contained in:
Anynomouss
2025-02-18 13:44:09 +01:00
parent c0216a152a
commit 0c5bdde4e8
2 changed files with 5 additions and 9 deletions
-1
View File
@@ -19,7 +19,6 @@ serde_derive = "1"
serde_json = "1"
log = "0.4"
ring = "0.16"
dirs = "2.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
chrono = { version = "0.4.11", features = ["serde"] }
lazy_static = "1"
+5 -8
View File
@@ -13,6 +13,7 @@
// limitations under the License.
//! Default wallet lifecycle provider
use crate::config::{
config, GlobalWalletConfig, GlobalWalletConfigMembers, TorConfig, WalletConfig, GRIN_WALLET_DIR,
};
@@ -133,17 +134,13 @@ where
// just leave as is if file exists but there's no data dir
if config_file_name.exists() {
panic!("Crash and burn!!!!!");
//return Ok(());
return Ok(());
}
// let mut abs_path_node = std::env::current_dir()?;
// let mut abs_path_wallet = std::env::current_dir()?;
// abs_path_wallet.push(self.data_dir.clone());
// abs_path_node.push(self.data_dir.clone());
// default_config.update_paths(&abs_path_wallet,&abs_path_node);
// println!("here, updating and writing config in default");
let mut abs_path = std::env::current_dir()?;
abs_path.push(self.data_dir.clone());
default_config.update_paths(&abs_path);
let res =
default_config.write_to_file(config_file_name.to_str().unwrap(), false, None, None);
if let Err(e) = res {