mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
simplewallet: print usage when given no args
This commit is contained in:
parent
9750e1fa10
commit
41b1a6b0dd
@ -6960,18 +6960,33 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
bool simple_wallet::transfer(const std::vector<std::string> &args_)
|
||||
{
|
||||
if (args_.size() < 1)
|
||||
{
|
||||
PRINT_USAGE(USAGE_TRANSFER);
|
||||
return true;
|
||||
}
|
||||
transfer_main(Transfer, args_, false);
|
||||
return true;
|
||||
}
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
bool simple_wallet::locked_transfer(const std::vector<std::string> &args_)
|
||||
{
|
||||
if (args_.size() < 1)
|
||||
{
|
||||
PRINT_USAGE(USAGE_LOCKED_TRANSFER);
|
||||
return true;
|
||||
}
|
||||
transfer_main(TransferLocked, args_, false);
|
||||
return true;
|
||||
}
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
bool simple_wallet::locked_sweep_all(const std::vector<std::string> &args_)
|
||||
{
|
||||
if (args_.size() < 1)
|
||||
{
|
||||
PRINT_USAGE(USAGE_LOCKED_SWEEP_ALL);
|
||||
return true;
|
||||
}
|
||||
sweep_main(m_current_subaddress_account, 0, true, args_);
|
||||
return true;
|
||||
}
|
||||
@ -7670,6 +7685,7 @@ bool simple_wallet::sweep_below(const std::vector<std::string> &args_)
|
||||
if (args_.size() < 1)
|
||||
{
|
||||
fail_msg_writer() << tr("missing threshold amount");
|
||||
PRINT_USAGE(USAGE_SWEEP_BELOW);
|
||||
return true;
|
||||
}
|
||||
if (!cryptonote::parse_amount(below, args_[0]))
|
||||
|
Loading…
Reference in New Issue
Block a user