Browse Source

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

Reviewed-on: https://git.hush.is/dragonx/silentdragonxlite-cli/pulls/2
master
fekt 2 months ago
parent
commit
39ec5f3666
  1. 2
      README.md
  2. 2
      cli/Cargo.toml
  3. 2
      cli/src/lib.rs
  4. 2
      lib/Cargo.toml

2
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 * `--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"` * Example: `./silentdragonxlite-cli --seed "twenty four words seed phrase"`
* `--recover`: Attempt to recover the seed phrase from a corrupted wallet * `--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 ### Support

2
cli/Cargo.toml

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

2
cli/src/lib.rs

@ -11,7 +11,7 @@ use silentdragonxlitelib::{commands,
#[macro_export] #[macro_export]
macro_rules! configure_clapapp { macro_rules! configure_clapapp {
( $freshapp: expr ) => { ( $freshapp: expr ) => {
$freshapp.version("1.1.1") $freshapp.version("1.0.0")
.arg(Arg::with_name("dangerous") .arg(Arg::with_name("dangerous")
.long("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.") .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.")

2
lib/Cargo.toml

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

Loading…
Cancel
Save