simplewallet: add missing calls to on_command

It resets the inactivity time
pull/320/head
moneromooo-monero 4 years ago
parent 77a008f714
commit 5e0ea6e95c
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -3144,10 +3144,10 @@ simple_wallet::simple_wallet()
m_cmd_binder.set_handler("sweep_unmixable", m_cmd_binder.set_handler("sweep_unmixable",
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_unmixable, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_unmixable, _1),
tr("Send all unmixable outputs to yourself with ring_size 1")); tr("Send all unmixable outputs to yourself with ring_size 1"));
m_cmd_binder.set_handler("sweep_all", boost::bind(&simple_wallet::sweep_all, this, _1), m_cmd_binder.set_handler("sweep_all", boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_all, _1),
tr(USAGE_SWEEP_ALL), tr(USAGE_SWEEP_ALL),
tr("Send all unlocked balance to an address. If the parameter \"index=<N1>[,<N2>,...]\" or \"index=all\" is specified, the wallet sweeps outputs received by those or all address indices, respectively. If omitted, the wallet randomly chooses an address index to be used. If the parameter \"outputs=<N>\" is specified and N > 0, wallet splits the transaction into N even outputs.")); tr("Send all unlocked balance to an address. If the parameter \"index=<N1>[,<N2>,...]\" or \"index=all\" is specified, the wallet sweeps outputs received by those or all address indices, respectively. If omitted, the wallet randomly chooses an address index to be used. If the parameter \"outputs=<N>\" is specified and N > 0, wallet splits the transaction into N even outputs."));
m_cmd_binder.set_handler("sweep_account", boost::bind(&simple_wallet::sweep_account, this, _1), m_cmd_binder.set_handler("sweep_account", boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_account, _1),
tr(USAGE_SWEEP_ACCOUNT), tr(USAGE_SWEEP_ACCOUNT),
tr("Send all unlocked balance from a given account to an address. If the parameter \"index=<N1>[,<N2>,...]\" or \"index=all\" is specified, the wallet sweeps outputs received by those or all address indices, respectively. If omitted, the wallet randomly chooses an address index to be used. If the parameter \"outputs=<N>\" is specified and N > 0, wallet splits the transaction into N even outputs.")); tr("Send all unlocked balance from a given account to an address. If the parameter \"index=<N1>[,<N2>,...]\" or \"index=all\" is specified, the wallet sweeps outputs received by those or all address indices, respectively. If omitted, the wallet randomly chooses an address index to be used. If the parameter \"outputs=<N>\" is specified and N > 0, wallet splits the transaction into N even outputs."));
m_cmd_binder.set_handler("sweep_below", m_cmd_binder.set_handler("sweep_below",
@ -3211,7 +3211,7 @@ simple_wallet::simple_wallet()
boost::bind(&simple_wallet::on_command, this, &simple_wallet::seed, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::seed, _1),
tr("Display the Electrum-style mnemonic seed")); tr("Display the Electrum-style mnemonic seed"));
m_cmd_binder.set_handler("restore_height", m_cmd_binder.set_handler("restore_height",
boost::bind(&simple_wallet::restore_height, this, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::restore_height, _1),
tr("Display the restore height")); tr("Display the restore height"));
m_cmd_binder.set_handler("set", m_cmd_binder.set_handler("set",
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_variable, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_variable, _1),
@ -3522,7 +3522,7 @@ simple_wallet::simple_wallet()
"auto-send <1|0>\n " "auto-send <1|0>\n "
" Whether to automatically send newly generated messages right away.\n ")); " Whether to automatically send newly generated messages right away.\n "));
m_cmd_binder.set_handler("mms send_signer_config", m_cmd_binder.set_handler("mms send_signer_config",
boost::bind(&simple_wallet::mms, this, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
tr(USAGE_MMS_SEND_SIGNER_CONFIG), tr(USAGE_MMS_SEND_SIGNER_CONFIG),
tr("Send completed signer config to all other authorized signers")); tr("Send completed signer config to all other authorized signers"));
m_cmd_binder.set_handler("mms start_auto_config", m_cmd_binder.set_handler("mms start_auto_config",
@ -3588,7 +3588,7 @@ simple_wallet::simple_wallet()
tr(USAGE_NET_STATS), tr(USAGE_NET_STATS),
tr("Prints simple network stats")); tr("Prints simple network stats"));
m_cmd_binder.set_handler("public_nodes", m_cmd_binder.set_handler("public_nodes",
boost::bind(&simple_wallet::public_nodes, this, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::public_nodes, _1),
tr(USAGE_PUBLIC_NODES), tr(USAGE_PUBLIC_NODES),
tr("Lists known public nodes")); tr("Lists known public nodes"));
m_cmd_binder.set_handler("welcome", m_cmd_binder.set_handler("welcome",
@ -3600,15 +3600,15 @@ simple_wallet::simple_wallet()
tr(USAGE_VERSION), tr(USAGE_VERSION),
tr("Returns version information")); tr("Returns version information"));
m_cmd_binder.set_handler("rpc_payment_info", m_cmd_binder.set_handler("rpc_payment_info",
boost::bind(&simple_wallet::rpc_payment_info, this, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::rpc_payment_info, _1),
tr(USAGE_RPC_PAYMENT_INFO), tr(USAGE_RPC_PAYMENT_INFO),
tr("Get info about RPC payments to current node")); tr("Get info about RPC payments to current node"));
m_cmd_binder.set_handler("start_mining_for_rpc", m_cmd_binder.set_handler("start_mining_for_rpc",
boost::bind(&simple_wallet::start_mining_for_rpc, this, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::start_mining_for_rpc, _1),
tr(USAGE_START_MINING_FOR_RPC), tr(USAGE_START_MINING_FOR_RPC),
tr("Start mining to pay for RPC access")); tr("Start mining to pay for RPC access"));
m_cmd_binder.set_handler("stop_mining_for_rpc", m_cmd_binder.set_handler("stop_mining_for_rpc",
boost::bind(&simple_wallet::stop_mining_for_rpc, this, _1), boost::bind(&simple_wallet::on_command, this, &simple_wallet::stop_mining_for_rpc, _1),
tr(USAGE_STOP_MINING_FOR_RPC), tr(USAGE_STOP_MINING_FOR_RPC),
tr("Stop mining to pay for RPC access")); tr("Stop mining to pay for RPC access"));
m_cmd_binder.set_handler("help_advanced", m_cmd_binder.set_handler("help_advanced",

Loading…
Cancel
Save