mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-08 06:22:39 -04:00
Merge #805
805: Remove unused command line argument from the balance command r=rishflab a=rishflab The target block is irrelevant when calculating the balance. Closes #793 Co-authored-by: rishflab <rishflab@hotmail.com>
This commit is contained in:
commit
90bf702b99
2 changed files with 14 additions and 3 deletions
|
@ -121,7 +121,13 @@ where
|
|||
data_dir: data::data_dir_from(data, is_testnet)?,
|
||||
cmd: Command::Config,
|
||||
},
|
||||
RawCommand::Balance { bitcoin } => {
|
||||
RawCommand::Balance {
|
||||
bitcoin_electrum_rpc_url,
|
||||
} => {
|
||||
let bitcoin = Bitcoin {
|
||||
bitcoin_electrum_rpc_url,
|
||||
bitcoin_target_block: None,
|
||||
};
|
||||
let (bitcoin_electrum_rpc_url, bitcoin_target_block) =
|
||||
bitcoin.apply_defaults(is_testnet)?;
|
||||
|
||||
|
@ -401,8 +407,8 @@ enum RawCommand {
|
|||
},
|
||||
#[structopt(about = "Prints the Bitcoin balance.")]
|
||||
Balance {
|
||||
#[structopt(flatten)]
|
||||
bitcoin: Bitcoin,
|
||||
#[structopt(long = "electrum-rpc", help = "Provide the Bitcoin Electrum RPC URL")]
|
||||
bitcoin_electrum_rpc_url: Option<Url>,
|
||||
},
|
||||
/// Resume a swap
|
||||
Resume {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue