From d55a80490a4bcc4092bbc95fa0c76805d84afee2 Mon Sep 17 00:00:00 2001 From: parazyd Date: Tue, 28 Feb 2023 16:19:28 +0100 Subject: [PATCH] cargo fmt --- bin/darkfid/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/darkfid/src/main.rs b/bin/darkfid/src/main.rs index f844fe77d..fd39bf0cc 100644 --- a/bin/darkfid/src/main.rs +++ b/bin/darkfid/src/main.rs @@ -300,7 +300,7 @@ async fn realmain(args: Args, ex: Arc>) -> Result<()> { let wallet = init_wallet(&args.wallet_path, &args.wallet_pass).await?; // Initialize or open sled database - let db_path = + let db_path = Path::new(expand_path(&args.database)?.to_str().unwrap()).join(args.chain.clone()); let sled_db = sled::open(&db_path)?;