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_)
|
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);
|
transfer_main(Transfer, args_, false);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------
|
||||||
bool simple_wallet::locked_transfer(const std::vector<std::string> &args_)
|
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);
|
transfer_main(TransferLocked, args_, false);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------
|
||||||
bool simple_wallet::locked_sweep_all(const std::vector<std::string> &args_)
|
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_);
|
sweep_main(m_current_subaddress_account, 0, true, args_);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -7670,6 +7685,7 @@ bool simple_wallet::sweep_below(const std::vector<std::string> &args_)
|
||||||
if (args_.size() < 1)
|
if (args_.size() < 1)
|
||||||
{
|
{
|
||||||
fail_msg_writer() << tr("missing threshold amount");
|
fail_msg_writer() << tr("missing threshold amount");
|
||||||
|
PRINT_USAGE(USAGE_SWEEP_BELOW);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (!cryptonote::parse_amount(below, args_[0]))
|
if (!cryptonote::parse_amount(below, args_[0]))
|
||||||
|
|
Loading…
Reference in New Issue