diff --git a/README.md b/README.md index 0747878..7c060bf 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Here are some CLI arguments you can pass to `silentdragonxlite-cli`. Please run * `--seed`: Restore a wallet from a seed phrase. **Note** that this will fail if there is an existing wallet. Delete (or move) any existing wallet to restore from the 24-word seed phrase * Example: `./silentdragonxlite-cli --seed "twenty four words seed phrase"` * `--recover`: Attempt to recover the seed phrase from a corrupted wallet -* `-n, --nosync`: By default, Silentdragonlite-cli will sync the wallet at startup, so use this option to prevent the automatic sync at startup +* `-n, --nosync`: By default, silentdragonxlite-cli will sync the wallet at startup, so use this option to prevent the automatic sync at startup ### Support diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a15b4a4..f5949d5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "silentdragonxlite-cli" -version = "1.1.1" +version = "1.0.0" edition = "2018" [dependencies] diff --git a/cli/src/lib.rs b/cli/src/lib.rs index 666d9de..3d73075 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -11,7 +11,7 @@ use silentdragonxlitelib::{commands, #[macro_export] macro_rules! configure_clapapp { ( $freshapp: expr ) => { - $freshapp.version("1.1.1") + $freshapp.version("1.0.0") .arg(Arg::with_name("dangerous") .long("dangerous") .help("Disable server TLS certificate verification. Use this if you're running a local lightwalletd with a self-signed certificate. WARNING: This is dangerous, don't use it with a server that is not your own.") diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 9ef2055..2d35112 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "silentdragonxlitelib" version = "0.1.0" -edition = "2024" +edition = "2018" [features] default = ["embed_params"]