From fb8c3a242c04d5b0211663aead967f78f01ac7ce Mon Sep 17 00:00:00 2001 From: Mykhailo Slyvka Date: Wed, 29 Jan 2025 16:14:48 +0200 Subject: [PATCH] fix datadir path --- Cargo.toml | 2 +- crates/cli/src/cli.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 37676af..c9e2d09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ keywords = ["core blockchain", "xcb", "cli"] license = "MIT OR Apache-2.0" homepage = "https://github.com/core-coin/core-cli" repository = "https://github.com/core-coin/core-cli" -version = "0.0.8" +version = "0.0.9" [workspace.dependencies] # Workspace members diff --git a/crates/cli/src/cli.rs b/crates/cli/src/cli.rs index 52031bd..c44dda5 100644 --- a/crates/cli/src/cli.rs +++ b/crates/cli/src/cli.rs @@ -14,6 +14,6 @@ pub struct Cli { )] pub backend: String, - #[structopt(long, short, default_value = "./data")] + #[structopt(long, short, default_value = "~/.core-cli/data")] pub datadir: String, }