mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Say who we are in the --help
message
The message now says: swap 0.3.0 The COMIT guys <hello@comit.network> CLI for swapping BTC for XMR USAGE: swap [FLAGS] [OPTIONS] <SUBCOMMAND> ...
This commit is contained in:
parent
39b27e37d8
commit
393ed45b9e
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "swap"
|
name = "swap"
|
||||||
version = "0.3.0"
|
version = "0.3.0"
|
||||||
authors = ["CoBloX developers <team@coblox.tech>"]
|
authors = ["The COMIT guys <hello@comit.network>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "XMR/BTC trustless atomic swaps."
|
description = "XMR/BTC trustless atomic swaps."
|
||||||
|
|
||||||
|
@ -6,7 +6,8 @@ use std::path::PathBuf;
|
|||||||
#[derive(structopt::StructOpt, Debug)]
|
#[derive(structopt::StructOpt, Debug)]
|
||||||
#[structopt(
|
#[structopt(
|
||||||
name = "asb",
|
name = "asb",
|
||||||
about = "Automated Swap Backend for swapping XMR for BTC"
|
about = "Automated Swap Backend for swapping XMR for BTC",
|
||||||
|
author
|
||||||
)]
|
)]
|
||||||
pub struct Arguments {
|
pub struct Arguments {
|
||||||
#[structopt(
|
#[structopt(
|
||||||
|
@ -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";
|
const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://electrum.blockstream.info:60002";
|
||||||
|
|
||||||
#[derive(structopt::StructOpt, Debug)]
|
#[derive(structopt::StructOpt, Debug)]
|
||||||
#[structopt(name = "swap", about = "CLI for swapping BTC for XMR")]
|
#[structopt(name = "swap", about = "CLI for swapping BTC for XMR", author)]
|
||||||
pub struct Arguments {
|
pub struct Arguments {
|
||||||
#[structopt(
|
#[structopt(
|
||||||
long = "--data-dir",
|
long = "--data-dir",
|
||||||
|
Loading…
Reference in New Issue
Block a user