diff --git a/Cargo.lock b/Cargo.lock index a860c014..105faf26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3454,7 +3454,7 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" [[package]] name = "swap" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-compression", diff --git a/swap/Cargo.toml b/swap/Cargo.toml index cc0f5dab..b135ee82 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap" -version = "0.2.0" +version = "0.3.0" authors = ["CoBloX developers "] edition = "2018" description = "XMR/BTC trustless atomic swaps." diff --git a/swap/src/asb/command.rs b/swap/src/asb/command.rs index f30d2a6b..16d9fb36 100644 --- a/swap/src/asb/command.rs +++ b/swap/src/asb/command.rs @@ -4,6 +4,10 @@ use bitcoin::Denomination; use std::path::PathBuf; #[derive(structopt::StructOpt, Debug)] +#[structopt( + name = "asb", + about = "Automated Swap Backend for swapping XMR for BTC" +)] pub struct Arguments { #[structopt( long = "config", diff --git a/swap/src/cli/command.rs b/swap/src/cli/command.rs index d3870933..ae6e5d43 100644 --- a/swap/src/cli/command.rs +++ b/swap/src/cli/command.rs @@ -17,7 +17,7 @@ pub const DEFAULT_ELECTRUM_HTTP_URL: &str = "https://blockstream.info/testnet/ap const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://electrum.blockstream.info:60002"; #[derive(structopt::StructOpt, Debug)] -#[structopt(name = "xmr-btc-swap", about = "Atomically swap BTC for XMR")] +#[structopt(name = "swap", about = "CLI for swapping BTC for XMR")] pub struct Arguments { #[structopt( long = "--data-dir",