mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
simplewallet: fix merge error with new welcome command
This commit is contained in:
parent
9c77dbf376
commit
8f1fe45fe1
1 changed files with 2 additions and 1 deletions
|
@ -3189,10 +3189,11 @@ simple_wallet::simple_wallet()
|
||||||
m_cmd_binder.set_handler("net_stats",
|
m_cmd_binder.set_handler("net_stats",
|
||||||
boost::bind(&simple_wallet::net_stats, this, _1),
|
boost::bind(&simple_wallet::net_stats, this, _1),
|
||||||
tr(USAGE_NET_STATS),
|
tr(USAGE_NET_STATS),
|
||||||
|
tr("Prints simple network stats"));
|
||||||
m_cmd_binder.set_handler("welcome",
|
m_cmd_binder.set_handler("welcome",
|
||||||
boost::bind(&simple_wallet::welcome, this, _1),
|
boost::bind(&simple_wallet::welcome, this, _1),
|
||||||
tr(USAGE_WELCOME),
|
tr(USAGE_WELCOME),
|
||||||
tr("Prints simple network stats"));
|
tr("Prints basic info about Monero for first time users"));
|
||||||
m_cmd_binder.set_handler("version",
|
m_cmd_binder.set_handler("version",
|
||||||
boost::bind(&simple_wallet::version, this, _1),
|
boost::bind(&simple_wallet::version, this, _1),
|
||||||
tr(USAGE_VERSION),
|
tr(USAGE_VERSION),
|
||||||
|
|
Loading…
Reference in a new issue