Merge bitcoindevkit/bdk#1290: doc(example_cli): add missing cli docs

c4d5f2ccd8435b9c424eec5ba35ba44a3383b04d doc(example_cli): add missing cli docs (vmammal)

Pull request description:

  ### Checklists

  #### All Submissions:

  * [x] I've signed all my commits
  * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md)
  * [x] I ran `cargo fmt` and `cargo clippy` before committing

ACKs for top commit:
  evanlinjin:
    ACK c4d5f2ccd8435b9c424eec5ba35ba44a3383b04d

Tree-SHA512: 43684abbb32570f07e0dc05ed07062bc7969cbe7c4fefe8ae7ebe41ac28aedfbba76ffc801bc4ddb3bf08a940ca81c128376dc3f6c76a04f1391e43c18e0d50b
This commit is contained in:
志宇 2024-01-29 18:06:50 +09:00
commit d4276a1c32
No known key found for this signature in database
GPG Key ID: F6345C9837C2BDE8

View File

@ -73,7 +73,9 @@ pub enum Commands<CS: clap::Subcommand, S: clap::Args> {
}, },
/// Send coins to an address. /// Send coins to an address.
Send { Send {
/// Amount to send in satoshis
value: u64, value: u64,
/// Destination address
address: Address<address::NetworkUnchecked>, address: Address<address::NetworkUnchecked>,
#[clap(short, default_value = "bnb")] #[clap(short, default_value = "bnb")]
coin_select: CoinSelectionAlgo, coin_select: CoinSelectionAlgo,
@ -144,14 +146,17 @@ pub enum AddressCmd {
New, New,
/// List all addresses /// List all addresses
List { List {
/// List change addresses
#[clap(long)] #[clap(long)]
change: bool, change: bool,
}, },
/// Get last revealed address index for each keychain.
Index, Index,
} }
#[derive(Subcommand, Debug, Clone)] #[derive(Subcommand, Debug, Clone)]
pub enum TxOutCmd { pub enum TxOutCmd {
/// List transaction outputs.
List { List {
/// Return only spent outputs. /// Return only spent outputs.
#[clap(short, long)] #[clap(short, long)]