mirror of
https://github.com/monero-project/monero.git
synced 2025-08-19 09:28:03 -04:00
Enhance help text for print_ring.
This commit is contained in:
parent
3900fb779f
commit
3998a937e5
3 changed files with 14 additions and 6 deletions
|
@ -1408,7 +1408,7 @@ bool simple_wallet::print_ring(const std::vector<std::string> &args)
|
|||
crypto::hash txid;
|
||||
if (args.size() != 1)
|
||||
{
|
||||
fail_msg_writer() << tr("usage: print_ring <key_image|txid>");
|
||||
fail_msg_writer() << tr("usage: print_ring <key_image> | <txid>");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -2653,7 +2653,9 @@ simple_wallet::simple_wallet()
|
|||
m_cmd_binder.set_handler("print_ring",
|
||||
boost::bind(&simple_wallet::print_ring, this, _1),
|
||||
tr("print_ring <key_image> | <txid>"),
|
||||
tr("Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)"));
|
||||
tr("Print the ring(s) used to spend a given key image or transaction (if the ring size is > 1)\n\n"
|
||||
"Output format:\n"
|
||||
"Key Image, \"absolute\", list of rings"));
|
||||
m_cmd_binder.set_handler("set_ring",
|
||||
boost::bind(&simple_wallet::set_ring, this, _1),
|
||||
tr("set_ring <filename> | ( <key_image> absolute|relative <index> [<index>...] )"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue