Correct monero-wallet-rpc parameter name

This commit is contained in:
Daniel Karzel 2021-01-05 11:00:15 +11:00
parent 4d9559fc2e
commit 8a2128e93a

View File

@ -50,7 +50,10 @@ pub enum Command {
#[structopt(long = "bitcoin-wallet-name")]
bitcoin_wallet_name: String,
#[structopt(long = "monerod", default_value = "http://127.0.0.1:18083/json_rpc")]
#[structopt(
long = "monero-wallet-rpc",
default_value = "http://127.0.0.1:18083/json_rpc"
)]
monero_wallet_rpc_url: Url,
#[structopt(long = "send-btc", help = "Bitcoin amount as floating point nr without denomination (e.g. 1.25)", parse(try_from_str = parse_btc))]