Merge pull request 'Minor fixes' (#2) from dev into master

Reviewed-on: https://git.hush.is/dragonx/silentdragonxlite-cli/pulls/2
This commit is contained in:
fekt
2024-04-11 01:44:53 +00:00
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -1,6 +1,6 @@
[package]
name = "silentdragonxlite-cli"
version = "1.1.1"
version = "1.0.0"
edition = "2018"
[dependencies]

View File

@@ -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.")

View File

@@ -1,7 +1,7 @@
[package]
name = "silentdragonxlitelib"
version = "0.1.0"
edition = "2024"
edition = "2018"
[features]
default = ["embed_params"]