From 8a2128e93a40ef03c7934ac717636d11ff62f7b3 Mon Sep 17 00:00:00 2001 From: Daniel Karzel Date: Tue, 5 Jan 2021 11:00:15 +1100 Subject: [PATCH] Correct monero-wallet-rpc parameter name --- swap/src/cli.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/swap/src/cli.rs b/swap/src/cli.rs index c8b274e2..6e1412f4 100644 --- a/swap/src/cli.rs +++ b/swap/src/cli.rs @@ -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))]