|
|
|
@ -33,6 +33,7 @@
|
|
|
|
|
*
|
|
|
|
|
* \brief Source file that defines simple_wallet class.
|
|
|
|
|
*/
|
|
|
|
|
#include <locale.h>
|
|
|
|
|
#include <thread>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <sstream>
|
|
|
|
@ -45,6 +46,7 @@
|
|
|
|
|
#include <boost/regex.hpp>
|
|
|
|
|
#include <boost/range/adaptor/transformed.hpp>
|
|
|
|
|
#include "include_base_utils.h"
|
|
|
|
|
#include "console_handler.h"
|
|
|
|
|
#include "common/i18n.h"
|
|
|
|
|
#include "common/command_line.h"
|
|
|
|
|
#include "common/util.h"
|
|
|
|
@ -245,6 +247,7 @@ namespace
|
|
|
|
|
const char* USAGE_FREEZE("freeze <key_image>");
|
|
|
|
|
const char* USAGE_THAW("thaw <key_image>");
|
|
|
|
|
const char* USAGE_FROZEN("frozen <key_image>");
|
|
|
|
|
const char* USAGE_LOCK("lock");
|
|
|
|
|
const char* USAGE_NET_STATS("net_stats");
|
|
|
|
|
const char* USAGE_WELCOME("welcome");
|
|
|
|
|
const char* USAGE_VERSION("version");
|
|
|
|
@ -252,9 +255,7 @@ namespace
|
|
|
|
|
|
|
|
|
|
std::string input_line(const std::string& prompt, bool yesno = false)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
std::cout << prompt;
|
|
|
|
|
if (yesno)
|
|
|
|
|
std::cout << " (Y/Yes/N/No)";
|
|
|
|
@ -272,9 +273,7 @@ namespace
|
|
|
|
|
|
|
|
|
|
epee::wipeable_string input_secure_line(const char *prompt)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
auto pwd_container = tools::password_container::prompt(false, prompt, false);
|
|
|
|
|
if (!pwd_container)
|
|
|
|
|
{
|
|
|
|
@ -290,9 +289,7 @@ namespace
|
|
|
|
|
|
|
|
|
|
boost::optional<tools::password_container> password_prompter(const char *prompt, bool verify)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
auto pwd_container = tools::password_container::prompt(verify, prompt);
|
|
|
|
|
if (!pwd_container)
|
|
|
|
|
{
|
|
|
|
@ -2141,6 +2138,13 @@ bool simple_wallet::frozen(const std::vector<std::string> &args)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::lock(const std::vector<std::string> &args)
|
|
|
|
|
{
|
|
|
|
|
m_locked = true;
|
|
|
|
|
check_for_inactivity_lock(true);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::net_stats(const std::vector<std::string> &args)
|
|
|
|
|
{
|
|
|
|
|
message_writer() << std::to_string(m_wallet->get_bytes_sent()) + tr(" bytes sent");
|
|
|
|
@ -2172,6 +2176,25 @@ bool simple_wallet::version(const std::vector<std::string> &args)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::on_unknown_command(const std::vector<std::string> &args)
|
|
|
|
|
{
|
|
|
|
|
if (args[0] == "exit" || args[0] == "q") // backward compat
|
|
|
|
|
return false;
|
|
|
|
|
fail_msg_writer() << boost::format(tr("Unknown command '%s', try 'help'")) % args.front();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::on_empty_command()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::on_cancelled_command()
|
|
|
|
|
{
|
|
|
|
|
check_for_inactivity_lock(false);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::cold_sign_tx(const std::vector<tools::wallet2::pending_tx>& ptx_vector, tools::wallet2::signed_tx_set &exported_txs, std::vector<cryptonote::address_parse_info> &dsts_info, std::function<bool(const tools::wallet2::signed_tx_set &)> accept_func)
|
|
|
|
|
{
|
|
|
|
|
std::vector<std::string> tx_aux;
|
|
|
|
@ -2660,6 +2683,29 @@ bool simple_wallet::set_track_uses(const std::vector<std::string> &args/* = std:
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::set_inactivity_lock_timeout(const std::vector<std::string> &args/* = std::vector<std::string>()*/)
|
|
|
|
|
{
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
tools::fail_msg_writer() << tr("Inactivity lock timeout disabled on Windows");
|
|
|
|
|
return true;
|
|
|
|
|
#endif
|
|
|
|
|
const auto pwd_container = get_and_verify_password();
|
|
|
|
|
if (pwd_container)
|
|
|
|
|
{
|
|
|
|
|
uint32_t r;
|
|
|
|
|
if (epee::string_tools::get_xtype_from_string(r, args[1]))
|
|
|
|
|
{
|
|
|
|
|
m_wallet->inactivity_lock_timeout(r);
|
|
|
|
|
m_wallet->rewrite(m_wallet_file, pwd_container->password());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
tools::fail_msg_writer() << tr("Invalid number of seconds");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool simple_wallet::set_setup_background_mining(const std::vector<std::string> &args/* = std::vector<std::string>()*/)
|
|
|
|
|
{
|
|
|
|
|
const auto pwd_container = get_and_verify_password();
|
|
|
|
@ -2768,83 +2814,86 @@ simple_wallet::simple_wallet()
|
|
|
|
|
, m_auto_refresh_refreshing(false)
|
|
|
|
|
, m_in_manual_refresh(false)
|
|
|
|
|
, m_current_subaddress_account(0)
|
|
|
|
|
, m_last_activity_time(time(NULL))
|
|
|
|
|
, m_locked(false)
|
|
|
|
|
, m_in_command(false)
|
|
|
|
|
{
|
|
|
|
|
m_cmd_binder.set_handler("start_mining",
|
|
|
|
|
boost::bind(&simple_wallet::start_mining, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::start_mining, _1),
|
|
|
|
|
tr(USAGE_START_MINING),
|
|
|
|
|
tr("Start mining in the daemon (bg_mining and ignore_battery are optional booleans)."));
|
|
|
|
|
m_cmd_binder.set_handler("stop_mining",
|
|
|
|
|
boost::bind(&simple_wallet::stop_mining, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::stop_mining, _1),
|
|
|
|
|
tr("Stop mining in the daemon."));
|
|
|
|
|
m_cmd_binder.set_handler("set_daemon",
|
|
|
|
|
boost::bind(&simple_wallet::set_daemon, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_daemon, _1),
|
|
|
|
|
tr(USAGE_SET_DAEMON),
|
|
|
|
|
tr("Set another daemon to connect to."));
|
|
|
|
|
m_cmd_binder.set_handler("save_bc",
|
|
|
|
|
boost::bind(&simple_wallet::save_bc, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::save_bc, _1),
|
|
|
|
|
tr("Save the current blockchain data."));
|
|
|
|
|
m_cmd_binder.set_handler("refresh",
|
|
|
|
|
boost::bind(&simple_wallet::refresh, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::refresh, _1),
|
|
|
|
|
tr("Synchronize the transactions and balance."));
|
|
|
|
|
m_cmd_binder.set_handler("balance",
|
|
|
|
|
boost::bind(&simple_wallet::show_balance, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::show_balance, _1),
|
|
|
|
|
tr(USAGE_SHOW_BALANCE),
|
|
|
|
|
tr("Show the wallet's balance of the currently selected account."));
|
|
|
|
|
m_cmd_binder.set_handler("incoming_transfers",
|
|
|
|
|
boost::bind(&simple_wallet::show_incoming_transfers, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::show_incoming_transfers,_1),
|
|
|
|
|
tr(USAGE_INCOMING_TRANSFERS),
|
|
|
|
|
tr("Show the incoming transfers, all or filtered by availability and address index.\n\n"
|
|
|
|
|
"Output format:\n"
|
|
|
|
|
"Amount, Spent(\"T\"|\"F\"), \"frozen\"|\"locked\"|\"unlocked\", RingCT, Global Index, Transaction Hash, Address Index, [Public Key, Key Image] "));
|
|
|
|
|
m_cmd_binder.set_handler("payments",
|
|
|
|
|
boost::bind(&simple_wallet::show_payments, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::show_payments,_1),
|
|
|
|
|
tr(USAGE_PAYMENTS),
|
|
|
|
|
tr("Show the payments for the given payment IDs."));
|
|
|
|
|
m_cmd_binder.set_handler("bc_height",
|
|
|
|
|
boost::bind(&simple_wallet::show_blockchain_height, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::show_blockchain_height, _1),
|
|
|
|
|
tr("Show the blockchain height."));
|
|
|
|
|
m_cmd_binder.set_handler("transfer", boost::bind(&simple_wallet::transfer, this, _1),
|
|
|
|
|
m_cmd_binder.set_handler("transfer", boost::bind(&simple_wallet::on_command, this, &simple_wallet::transfer, _1),
|
|
|
|
|
tr(USAGE_TRANSFER),
|
|
|
|
|
tr("Transfer <amount> to <address>. If the parameter \"index=<N1>[,<N2>,...]\" is specified, the wallet uses outputs received by addresses of those indices. If omitted, the wallet randomly chooses address indices to be used. In any case, it tries its best not to combine outputs across multiple addresses. <priority> is the priority of the transaction. The higher the priority, the higher the transaction fee. Valid values in priority order (from lowest to highest) are: unimportant, normal, elevated, priority. If omitted, the default value (see the command \"set priority\") is used. <ring_size> is the number of inputs to include for untraceability. Multiple payments can be made at once by adding URI_2 or <address_2> <amount_2> etcetera (before the payment ID, if it's included)"));
|
|
|
|
|
m_cmd_binder.set_handler("locked_transfer",
|
|
|
|
|
boost::bind(&simple_wallet::locked_transfer, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::locked_transfer,_1),
|
|
|
|
|
tr(USAGE_LOCKED_TRANSFER),
|
|
|
|
|
tr("Transfer <amount> to <address> and lock it for <lockblocks> (max. 1000000). If the parameter \"index=<N1>[,<N2>,...]\" is specified, the wallet uses outputs received by addresses of those indices. If omitted, the wallet randomly chooses address indices to be used. In any case, it tries its best not to combine outputs across multiple addresses. <priority> is the priority of the transaction. The higher the priority, the higher the transaction fee. Valid values in priority order (from lowest to highest) are: unimportant, normal, elevated, priority. If omitted, the default value (see the command \"set priority\") is used. <ring_size> is the number of inputs to include for untraceability. Multiple payments can be made at once by adding URI_2 or <address_2> <amount_2> etcetera (before the payment ID, if it's included)"));
|
|
|
|
|
m_cmd_binder.set_handler("locked_sweep_all",
|
|
|
|
|
boost::bind(&simple_wallet::locked_sweep_all, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::locked_sweep_all,_1),
|
|
|
|
|
tr(USAGE_LOCKED_SWEEP_ALL),
|
|
|
|
|
tr("Send all unlocked balance to an address and lock it for <lockblocks> (max. 1000000). If the parameter \"index<N1>[,<N2>,...]\" is specified, the wallet sweeps outputs received by those address indices. If omitted, the wallet randomly chooses an address index to be used. <priority> is the priority of the sweep. The higher the priority, the higher the transaction fee. Valid values in priority order (from lowest to highest) are: unimportant, normal, elevated, priority. If omitted, the default value (see the command \"set priority\") is used. <ring_size> is the number of inputs to include for untraceability."));
|
|
|
|
|
m_cmd_binder.set_handler("sweep_unmixable",
|
|
|
|
|
boost::bind(&simple_wallet::sweep_unmixable, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_unmixable, _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),
|
|
|
|
|
tr(USAGE_SWEEP_ALL),
|
|
|
|
|
tr("Send all unlocked balance to an address. If the parameter \"index<N1>[,<N2>,...]\" is specified, the wallet sweeps outputs received by those address indices. 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",
|
|
|
|
|
boost::bind(&simple_wallet::sweep_below, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_below, _1),
|
|
|
|
|
tr(USAGE_SWEEP_BELOW),
|
|
|
|
|
tr("Send all unlocked outputs below the threshold to an address."));
|
|
|
|
|
m_cmd_binder.set_handler("sweep_single",
|
|
|
|
|
boost::bind(&simple_wallet::sweep_single, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sweep_single, _1),
|
|
|
|
|
tr(USAGE_SWEEP_SINGLE),
|
|
|
|
|
tr("Send a single output of the given key image to an address without change."));
|
|
|
|
|
m_cmd_binder.set_handler("donate",
|
|
|
|
|
boost::bind(&simple_wallet::donate, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::donate, _1),
|
|
|
|
|
tr(USAGE_DONATE),
|
|
|
|
|
tr("Donate <amount> to the development team (donate.getmonero.org)."));
|
|
|
|
|
m_cmd_binder.set_handler("sign_transfer",
|
|
|
|
|
boost::bind(&simple_wallet::sign_transfer, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sign_transfer, _1),
|
|
|
|
|
tr(USAGE_SIGN_TRANSFER),
|
|
|
|
|
tr("Sign a transaction from a file. If the parameter \"export_raw\" is specified, transaction raw hex data suitable for the daemon RPC /sendrawtransaction is exported."));
|
|
|
|
|
m_cmd_binder.set_handler("submit_transfer",
|
|
|
|
|
boost::bind(&simple_wallet::submit_transfer, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::submit_transfer, _1),
|
|
|
|
|
tr("Submit a signed transaction from a file."));
|
|
|
|
|
m_cmd_binder.set_handler("set_log",
|
|
|
|
|
boost::bind(&simple_wallet::set_log, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_log, _1),
|
|
|
|
|
tr(USAGE_SET_LOG),
|
|
|
|
|
tr("Change the current log detail (level must be <0-4>)."));
|
|
|
|
|
m_cmd_binder.set_handler("account",
|
|
|
|
|
boost::bind(&simple_wallet::account, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::account, _1),
|
|
|
|
|
tr(USAGE_ACCOUNT),
|
|
|
|
|
tr("If no arguments are specified, the wallet shows all the existing accounts along with their balances.\n"
|
|
|
|
|
"If the \"new\" argument is specified, the wallet creates a new account with its label initialized by the provided label text (which can be empty).\n"
|
|
|
|
@ -2854,37 +2903,37 @@ simple_wallet::simple_wallet()
|
|
|
|
|
"If the \"untag\" argument is specified, the tags assigned to the specified accounts <account_index_1>, <account_index_2> ..., are removed.\n"
|
|
|
|
|
"If the \"tag_description\" argument is specified, the tag <tag_name> is assigned an arbitrary text <description>."));
|
|
|
|
|
m_cmd_binder.set_handler("address",
|
|
|
|
|
boost::bind(&simple_wallet::print_address, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::print_address, _1),
|
|
|
|
|
tr(USAGE_ADDRESS),
|
|
|
|
|
tr("If no arguments are specified or <index> is specified, the wallet shows the default or specified address. If \"all\" is specified, the wallet shows all the existing addresses in the currently selected account. If \"new \" is specified, the wallet creates a new address with the provided label text (which can be empty). If \"label\" is specified, the wallet sets the label of the address specified by <index> to the provided label text."));
|
|
|
|
|
m_cmd_binder.set_handler("integrated_address",
|
|
|
|
|
boost::bind(&simple_wallet::print_integrated_address, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::print_integrated_address, _1),
|
|
|
|
|
tr(USAGE_INTEGRATED_ADDRESS),
|
|
|
|
|
tr("Encode a payment ID into an integrated address for the current wallet public address (no argument uses a random payment ID), or decode an integrated address to standard address and payment ID"));
|
|
|
|
|
m_cmd_binder.set_handler("address_book",
|
|
|
|
|
boost::bind(&simple_wallet::address_book, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::address_book,_1),
|
|
|
|
|
tr(USAGE_ADDRESS_BOOK),
|
|
|
|
|
tr("Print all entries in the address book, optionally adding/deleting an entry to/from it."));
|
|
|
|
|
m_cmd_binder.set_handler("save",
|
|
|
|
|
boost::bind(&simple_wallet::save, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::save, _1),
|
|
|
|
|
tr("Save the wallet data."));
|
|
|
|
|
m_cmd_binder.set_handler("save_watch_only",
|
|
|
|
|
boost::bind(&simple_wallet::save_watch_only, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::save_watch_only, _1),
|
|
|
|
|
tr("Save a watch-only keys file."));
|
|
|
|
|
m_cmd_binder.set_handler("viewkey",
|
|
|
|
|
boost::bind(&simple_wallet::viewkey, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::viewkey, _1),
|
|
|
|
|
tr("Display the private view key."));
|
|
|
|
|
m_cmd_binder.set_handler("spendkey",
|
|
|
|
|
boost::bind(&simple_wallet::spendkey, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::spendkey, _1),
|
|
|
|
|
tr("Display the private spend key."));
|
|
|
|
|
m_cmd_binder.set_handler("seed",
|
|
|
|
|
boost::bind(&simple_wallet::seed, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::seed, _1),
|
|
|
|
|
tr("Display the Electrum-style mnemonic seed"));
|
|
|
|
|
m_cmd_binder.set_handler("restore_height",
|
|
|
|
|
boost::bind(&simple_wallet::restore_height, this, _1),
|
|
|
|
|
tr("Display the restore height"));
|
|
|
|
|
m_cmd_binder.set_handler("set",
|
|
|
|
|
boost::bind(&simple_wallet::set_variable, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_variable, _1),
|
|
|
|
|
tr(USAGE_SET_VARIABLE),
|
|
|
|
|
tr("Available options:\n "
|
|
|
|
|
"seed language\n "
|
|
|
|
@ -2945,51 +2994,51 @@ simple_wallet::simple_wallet()
|
|
|
|
|
"export-format <\"binary\"|\"ascii\">\n "
|
|
|
|
|
" Save all exported files as binary (cannot be copied and pasted) or ascii (can be).\n "));
|
|
|
|
|
m_cmd_binder.set_handler("encrypted_seed",
|
|
|
|
|
boost::bind(&simple_wallet::encrypted_seed, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::encrypted_seed, _1),
|
|
|
|
|
tr("Display the encrypted Electrum-style mnemonic seed."));
|
|
|
|
|
m_cmd_binder.set_handler("rescan_spent",
|
|
|
|
|
boost::bind(&simple_wallet::rescan_spent, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::rescan_spent, _1),
|
|
|
|
|
tr("Rescan the blockchain for spent outputs."));
|
|
|
|
|
m_cmd_binder.set_handler("get_tx_key",
|
|
|
|
|
boost::bind(&simple_wallet::get_tx_key, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::get_tx_key, _1),
|
|
|
|
|
tr(USAGE_GET_TX_KEY),
|
|
|
|
|
tr("Get the transaction key (r) for a given <txid>."));
|
|
|
|
|
m_cmd_binder.set_handler("set_tx_key",
|
|
|
|
|
boost::bind(&simple_wallet::set_tx_key, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_tx_key, _1),
|
|
|
|
|
tr(USAGE_SET_TX_KEY),
|
|
|
|
|
tr("Set the transaction key (r) for a given <txid> in case the tx was made by some other device or 3rd party wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("check_tx_key",
|
|
|
|
|
boost::bind(&simple_wallet::check_tx_key, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::check_tx_key, _1),
|
|
|
|
|
tr(USAGE_CHECK_TX_KEY),
|
|
|
|
|
tr("Check the amount going to <address> in <txid>."));
|
|
|
|
|
m_cmd_binder.set_handler("get_tx_proof",
|
|
|
|
|
boost::bind(&simple_wallet::get_tx_proof, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::get_tx_proof, _1),
|
|
|
|
|
tr(USAGE_GET_TX_PROOF),
|
|
|
|
|
tr("Generate a signature proving funds sent to <address> in <txid>, optionally with a challenge string <message>, using either the transaction secret key (when <address> is not your wallet's address) or the view secret key (otherwise), which does not disclose the secret key."));
|
|
|
|
|
m_cmd_binder.set_handler("check_tx_proof",
|
|
|
|
|
boost::bind(&simple_wallet::check_tx_proof, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::check_tx_proof, _1),
|
|
|
|
|
tr(USAGE_CHECK_TX_PROOF),
|
|
|
|
|
tr("Check the proof for funds going to <address> in <txid> with the challenge string <message> if any."));
|
|
|
|
|
m_cmd_binder.set_handler("get_spend_proof",
|
|
|
|
|
boost::bind(&simple_wallet::get_spend_proof, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::get_spend_proof, _1),
|
|
|
|
|
tr(USAGE_GET_SPEND_PROOF),
|
|
|
|
|
tr("Generate a signature proving that you generated <txid> using the spend secret key, optionally with a challenge string <message>."));
|
|
|
|
|
m_cmd_binder.set_handler("check_spend_proof",
|
|
|
|
|
boost::bind(&simple_wallet::check_spend_proof, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::check_spend_proof, _1),
|
|
|
|
|
tr(USAGE_CHECK_SPEND_PROOF),
|
|
|
|
|
tr("Check a signature proving that the signer generated <txid>, optionally with a challenge string <message>."));
|
|
|
|
|
m_cmd_binder.set_handler("get_reserve_proof",
|
|
|
|
|
boost::bind(&simple_wallet::get_reserve_proof, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::get_reserve_proof, _1),
|
|
|
|
|
tr(USAGE_GET_RESERVE_PROOF),
|
|
|
|
|
tr("Generate a signature proving that you own at least this much, optionally with a challenge string <message>.\n"
|
|
|
|
|
"If 'all' is specified, you prove the entire sum of all of your existing accounts' balances.\n"
|
|
|
|
|
"Otherwise, you prove the reserve of the smallest possible amount above <amount> available in your current account."));
|
|
|
|
|
m_cmd_binder.set_handler("check_reserve_proof",
|
|
|
|
|
boost::bind(&simple_wallet::check_reserve_proof, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::check_reserve_proof, _1),
|
|
|
|
|
tr(USAGE_CHECK_RESERVE_PROOF),
|
|
|
|
|
tr("Check a signature proving that the owner of <address> holds at least this much, optionally with a challenge string <message>."));
|
|
|
|
|
m_cmd_binder.set_handler("show_transfers",
|
|
|
|
|
boost::bind(&simple_wallet::show_transfers, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::show_transfers, _1),
|
|
|
|
|
tr(USAGE_SHOW_TRANSFERS),
|
|
|
|
|
// Seemingly broken formatting to compensate for the backslash before the quotes.
|
|
|
|
|
tr("Show the incoming/outgoing transfers within an optional height range.\n\n"
|
|
|
|
@ -3001,120 +3050,120 @@ simple_wallet::simple_wallet()
|
|
|
|
|
"* Excluding change and fee.\n"
|
|
|
|
|
"** Set of address indices used as inputs in this transfer."));
|
|
|
|
|
m_cmd_binder.set_handler("export_transfers",
|
|
|
|
|
boost::bind(&simple_wallet::export_transfers, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::export_transfers, _1),
|
|
|
|
|
tr("export_transfers [in|out|all|pending|failed|coinbase] [index=<N1>[,<N2>,...]] [<min_height> [<max_height>]] [output=<filepath>]"),
|
|
|
|
|
tr("Export to CSV the incoming/outgoing transfers within an optional height range."));
|
|
|
|
|
m_cmd_binder.set_handler("unspent_outputs",
|
|
|
|
|
boost::bind(&simple_wallet::unspent_outputs, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::unspent_outputs, _1),
|
|
|
|
|
tr(USAGE_UNSPENT_OUTPUTS),
|
|
|
|
|
tr("Show the unspent outputs of a specified address within an optional amount range."));
|
|
|
|
|
m_cmd_binder.set_handler("rescan_bc",
|
|
|
|
|
boost::bind(&simple_wallet::rescan_blockchain, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::rescan_blockchain, _1),
|
|
|
|
|
tr(USAGE_RESCAN_BC),
|
|
|
|
|
tr("Rescan the blockchain from scratch. If \"hard\" is specified, you will lose any information which can not be recovered from the blockchain itself."));
|
|
|
|
|
m_cmd_binder.set_handler("set_tx_note",
|
|
|
|
|
boost::bind(&simple_wallet::set_tx_note, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_tx_note, _1),
|
|
|
|
|
tr(USAGE_SET_TX_NOTE),
|
|
|
|
|
tr("Set an arbitrary string note for a <txid>."));
|
|
|
|
|
m_cmd_binder.set_handler("get_tx_note",
|
|
|
|
|
boost::bind(&simple_wallet::get_tx_note, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::get_tx_note, _1),
|
|
|
|
|
tr(USAGE_GET_TX_NOTE),
|
|
|
|
|
tr("Get a string note for a txid."));
|
|
|
|
|
m_cmd_binder.set_handler("set_description",
|
|
|
|
|
boost::bind(&simple_wallet::set_description, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_description, _1),
|
|
|
|
|
tr(USAGE_SET_DESCRIPTION),
|
|
|
|
|
tr("Set an arbitrary description for the wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("get_description",
|
|
|
|
|
boost::bind(&simple_wallet::get_description, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::get_description, _1),
|
|
|
|
|
tr(USAGE_GET_DESCRIPTION),
|
|
|
|
|
tr("Get the description of the wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("status",
|
|
|
|
|
boost::bind(&simple_wallet::status, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::status, _1),
|
|
|
|
|
tr("Show the wallet's status."));
|
|
|
|
|
m_cmd_binder.set_handler("wallet_info",
|
|
|
|
|
boost::bind(&simple_wallet::wallet_info, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::wallet_info, _1),
|
|
|
|
|
tr("Show the wallet's information."));
|
|
|
|
|
m_cmd_binder.set_handler("sign",
|
|
|
|
|
boost::bind(&simple_wallet::sign, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sign, _1),
|
|
|
|
|
tr(USAGE_SIGN),
|
|
|
|
|
tr("Sign the contents of a file."));
|
|
|
|
|
m_cmd_binder.set_handler("verify",
|
|
|
|
|
boost::bind(&simple_wallet::verify, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::verify, _1),
|
|
|
|
|
tr(USAGE_VERIFY),
|
|
|
|
|
tr("Verify a signature on the contents of a file."));
|
|
|
|
|
m_cmd_binder.set_handler("export_key_images",
|
|
|
|
|
boost::bind(&simple_wallet::export_key_images, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::export_key_images, _1),
|
|
|
|
|
tr(USAGE_EXPORT_KEY_IMAGES),
|
|
|
|
|
tr("Export a signed set of key images to a <filename>."));
|
|
|
|
|
m_cmd_binder.set_handler("import_key_images",
|
|
|
|
|
boost::bind(&simple_wallet::import_key_images, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::import_key_images, _1),
|
|
|
|
|
tr(USAGE_IMPORT_KEY_IMAGES),
|
|
|
|
|
tr("Import a signed key images list and verify their spent status."));
|
|
|
|
|
m_cmd_binder.set_handler("hw_key_images_sync",
|
|
|
|
|
boost::bind(&simple_wallet::hw_key_images_sync, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::hw_key_images_sync, _1),
|
|
|
|
|
tr(USAGE_HW_KEY_IMAGES_SYNC),
|
|
|
|
|
tr("Synchronizes key images with the hw wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("hw_reconnect",
|
|
|
|
|
boost::bind(&simple_wallet::hw_reconnect, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::hw_reconnect, _1),
|
|
|
|
|
tr(USAGE_HW_RECONNECT),
|
|
|
|
|
tr("Attempts to reconnect HW wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("export_outputs",
|
|
|
|
|
boost::bind(&simple_wallet::export_outputs, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::export_outputs, _1),
|
|
|
|
|
tr(USAGE_EXPORT_OUTPUTS),
|
|
|
|
|
tr("Export a set of outputs owned by this wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("import_outputs",
|
|
|
|
|
boost::bind(&simple_wallet::import_outputs, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::import_outputs, _1),
|
|
|
|
|
tr(USAGE_IMPORT_OUTPUTS),
|
|
|
|
|
tr("Import a set of outputs owned by this wallet."));
|
|
|
|
|
m_cmd_binder.set_handler("show_transfer",
|
|
|
|
|
boost::bind(&simple_wallet::show_transfer, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::show_transfer, _1),
|
|
|
|
|
tr(USAGE_SHOW_TRANSFER),
|
|
|
|
|
tr("Show information about a transfer to/from this address."));
|
|
|
|
|
m_cmd_binder.set_handler("password",
|
|
|
|
|
boost::bind(&simple_wallet::change_password, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::change_password, _1),
|
|
|
|
|
tr("Change the wallet's password."));
|
|
|
|
|
m_cmd_binder.set_handler("payment_id",
|
|
|
|
|
boost::bind(&simple_wallet::payment_id, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::payment_id, _1),
|
|
|
|
|
tr(USAGE_PAYMENT_ID),
|
|
|
|
|
tr("Generate a new random full size payment id (obsolete). These will be unencrypted on the blockchain, see integrated_address for encrypted short payment ids."));
|
|
|
|
|
m_cmd_binder.set_handler("fee",
|
|
|
|
|
boost::bind(&simple_wallet::print_fee_info, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::print_fee_info, _1),
|
|
|
|
|
tr("Print the information about the current fee and transaction backlog."));
|
|
|
|
|
m_cmd_binder.set_handler("prepare_multisig", boost::bind(&simple_wallet::prepare_multisig, this, _1),
|
|
|
|
|
m_cmd_binder.set_handler("prepare_multisig", boost::bind(&simple_wallet::on_command, this, &simple_wallet::prepare_multisig, _1),
|
|
|
|
|
tr("Export data needed to create a multisig wallet"));
|
|
|
|
|
m_cmd_binder.set_handler("make_multisig", boost::bind(&simple_wallet::make_multisig, this, _1),
|
|
|
|
|
m_cmd_binder.set_handler("make_multisig", boost::bind(&simple_wallet::on_command, this, &simple_wallet::make_multisig, _1),
|
|
|
|
|
tr(USAGE_MAKE_MULTISIG),
|
|
|
|
|
tr("Turn this wallet into a multisig wallet"));
|
|
|
|
|
m_cmd_binder.set_handler("finalize_multisig",
|
|
|
|
|
boost::bind(&simple_wallet::finalize_multisig, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::finalize_multisig, _1),
|
|
|
|
|
tr(USAGE_FINALIZE_MULTISIG),
|
|
|
|
|
tr("Turn this wallet into a multisig wallet, extra step for N-1/N wallets"));
|
|
|
|
|
m_cmd_binder.set_handler("exchange_multisig_keys",
|
|
|
|
|
boost::bind(&simple_wallet::exchange_multisig_keys, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::exchange_multisig_keys, _1),
|
|
|
|
|
tr(USAGE_EXCHANGE_MULTISIG_KEYS),
|
|
|
|
|
tr("Performs extra multisig keys exchange rounds. Needed for arbitrary M/N multisig wallets"));
|
|
|
|
|
m_cmd_binder.set_handler("export_multisig_info",
|
|
|
|
|
boost::bind(&simple_wallet::export_multisig, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::export_multisig, _1),
|
|
|
|
|
tr(USAGE_EXPORT_MULTISIG_INFO),
|
|
|
|
|
tr("Export multisig info for other participants"));
|
|
|
|
|
m_cmd_binder.set_handler("import_multisig_info",
|
|
|
|
|
boost::bind(&simple_wallet::import_multisig, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::import_multisig, _1),
|
|
|
|
|
tr(USAGE_IMPORT_MULTISIG_INFO),
|
|
|
|
|
tr("Import multisig info from other participants"));
|
|
|
|
|
m_cmd_binder.set_handler("sign_multisig",
|
|
|
|
|
boost::bind(&simple_wallet::sign_multisig, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::sign_multisig, _1),
|
|
|
|
|
tr(USAGE_SIGN_MULTISIG),
|
|
|
|
|
tr("Sign a multisig transaction from a file"));
|
|
|
|
|
m_cmd_binder.set_handler("submit_multisig",
|
|
|
|
|
boost::bind(&simple_wallet::submit_multisig, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::submit_multisig, _1),
|
|
|
|
|
tr(USAGE_SUBMIT_MULTISIG),
|
|
|
|
|
tr("Submit a signed multisig transaction from a file"));
|
|
|
|
|
m_cmd_binder.set_handler("export_raw_multisig_tx",
|
|
|
|
|
boost::bind(&simple_wallet::export_raw_multisig, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::export_raw_multisig, _1),
|
|
|
|
|
tr(USAGE_EXPORT_RAW_MULTISIG_TX),
|
|
|
|
|
tr("Export a signed multisig transaction to a file"));
|
|
|
|
|
m_cmd_binder.set_handler("mms",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS),
|
|
|
|
|
tr("Interface with the MMS (Multisig Messaging System)\n"
|
|
|
|
|
"<subcommand> is one of:\n"
|
|
|
|
@ -3122,60 +3171,60 @@ simple_wallet::simple_wallet()
|
|
|
|
|
" send_signer_config, start_auto_config, stop_auto_config, auto_config\n"
|
|
|
|
|
"Get help about a subcommand with: help mms <subcommand>, or mms help <subcommand>"));
|
|
|
|
|
m_cmd_binder.set_handler("mms init",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_INIT),
|
|
|
|
|
tr("Initialize and configure the MMS for M/N = number of required signers/number of authorized signers multisig"));
|
|
|
|
|
m_cmd_binder.set_handler("mms info",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_INFO),
|
|
|
|
|
tr("Display current MMS configuration"));
|
|
|
|
|
m_cmd_binder.set_handler("mms signer",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_SIGNER),
|
|
|
|
|
tr("Set or modify authorized signer info (single-word label, transport address, Monero address), or list all signers"));
|
|
|
|
|
m_cmd_binder.set_handler("mms list",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_LIST),
|
|
|
|
|
tr("List all messages"));
|
|
|
|
|
m_cmd_binder.set_handler("mms next",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_NEXT),
|
|
|
|
|
tr("Evaluate the next possible multisig-related action(s) according to wallet state, and execute or offer for choice\n"
|
|
|
|
|
"By using 'sync' processing of waiting messages with multisig sync info can be forced regardless of wallet state"));
|
|
|
|
|
m_cmd_binder.set_handler("mms sync",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_SYNC),
|
|
|
|
|
tr("Force generation of multisig sync info regardless of wallet state, to recover from special situations like \"stale data\" errors"));
|
|
|
|
|
m_cmd_binder.set_handler("mms transfer",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_TRANSFER),
|
|
|
|
|
tr("Initiate transfer with MMS support; arguments identical to normal 'transfer' command arguments, for info see there"));
|
|
|
|
|
m_cmd_binder.set_handler("mms delete",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_DELETE),
|
|
|
|
|
tr("Delete a single message by giving its id, or delete all messages by using 'all'"));
|
|
|
|
|
m_cmd_binder.set_handler("mms send",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_SEND),
|
|
|
|
|
tr("Send a single message by giving its id, or send all waiting messages"));
|
|
|
|
|
m_cmd_binder.set_handler("mms receive",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_RECEIVE),
|
|
|
|
|
tr("Check right away for new messages to receive"));
|
|
|
|
|
m_cmd_binder.set_handler("mms export",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_EXPORT),
|
|
|
|
|
tr("Write the content of a message to a file \"mms_message_content\""));
|
|
|
|
|
m_cmd_binder.set_handler("mms note",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_NOTE),
|
|
|
|
|
tr("Send a one-line message to an authorized signer, identified by its label, or show any waiting unread notes"));
|
|
|
|
|
m_cmd_binder.set_handler("mms show",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_SHOW),
|
|
|
|
|
tr("Show detailed info about a single message"));
|
|
|
|
|
m_cmd_binder.set_handler("mms set",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_SET),
|
|
|
|
|
tr("Available options:\n "
|
|
|
|
|
"auto-send <1|0>\n "
|
|
|
|
@ -3185,75 +3234,82 @@ simple_wallet::simple_wallet()
|
|
|
|
|
tr(USAGE_MMS_SEND_SIGNER_CONFIG),
|
|
|
|
|
tr("Send completed signer config to all other authorized signers"));
|
|
|
|
|
m_cmd_binder.set_handler("mms start_auto_config",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_START_AUTO_CONFIG),
|
|
|
|
|
tr("Start auto-config at the auto-config manager's wallet by issuing auto-config tokens and optionally set others' labels"));
|
|
|
|
|
m_cmd_binder.set_handler("mms stop_auto_config",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_STOP_AUTO_CONFIG),
|
|
|
|
|
tr("Delete any auto-config tokens and abort a auto-config process"));
|
|
|
|
|
m_cmd_binder.set_handler("mms auto_config",
|
|
|
|
|
boost::bind(&simple_wallet::mms, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::mms, _1),
|
|
|
|
|
tr(USAGE_MMS_AUTO_CONFIG),
|
|
|
|
|
tr("Start auto-config by using the token received from the auto-config manager"));
|
|
|
|
|
m_cmd_binder.set_handler("print_ring",
|
|
|
|
|
boost::bind(&simple_wallet::print_ring, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::print_ring, _1),
|
|
|
|
|
tr(USAGE_PRINT_RING),
|
|
|
|
|
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),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::set_ring, _1),
|
|
|
|
|
tr(USAGE_SET_RING),
|
|
|
|
|
tr("Set the ring used for a given key image, so it can be reused in a fork"));
|
|
|
|
|
m_cmd_binder.set_handler("unset_ring",
|
|
|
|
|
boost::bind(&simple_wallet::unset_ring, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::unset_ring, _1),
|
|
|
|
|
tr(USAGE_UNSET_RING),
|
|
|
|
|
tr("Unsets the ring used for a given key image or transaction"));
|
|
|
|
|
m_cmd_binder.set_handler("save_known_rings",
|
|
|
|
|
boost::bind(&simple_wallet::save_known_rings, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::save_known_rings, _1),
|
|
|
|
|
tr(USAGE_SAVE_KNOWN_RINGS),
|
|
|
|
|
tr("Save known rings to the shared rings database"));
|
|
|
|
|
m_cmd_binder.set_handler("mark_output_spent",
|
|
|
|
|
boost::bind(&simple_wallet::blackball, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::blackball, _1),
|
|
|
|
|
tr(USAGE_MARK_OUTPUT_SPENT),
|
|
|
|
|
tr("Mark output(s) as spent so they never get selected as fake outputs in a ring"));
|
|
|
|
|
m_cmd_binder.set_handler("mark_output_unspent",
|
|
|
|
|
boost::bind(&simple_wallet::unblackball, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::unblackball, _1),
|
|
|
|
|
tr(USAGE_MARK_OUTPUT_UNSPENT),
|
|
|
|
|
tr("Marks an output as unspent so it may get selected as a fake output in a ring"));
|
|
|
|
|
m_cmd_binder.set_handler("is_output_spent",
|
|
|
|
|
boost::bind(&simple_wallet::blackballed, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::blackballed, _1),
|
|
|
|
|
tr(USAGE_IS_OUTPUT_SPENT),
|
|
|
|
|
tr("Checks whether an output is marked as spent"));
|
|
|
|
|
m_cmd_binder.set_handler("freeze",
|
|
|
|
|
boost::bind(&simple_wallet::freeze, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::freeze, _1),
|
|
|
|
|
tr(USAGE_FREEZE),
|
|
|
|
|
tr("Freeze a single output by key image so it will not be used"));
|
|
|
|
|
m_cmd_binder.set_handler("thaw",
|
|
|
|
|
boost::bind(&simple_wallet::thaw, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::thaw, _1),
|
|
|
|
|
tr(USAGE_THAW),
|
|
|
|
|
tr("Thaw a single output by key image so it may be used again"));
|
|
|
|
|
m_cmd_binder.set_handler("frozen",
|
|
|
|
|
boost::bind(&simple_wallet::frozen, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::frozen, _1),
|
|
|
|
|
tr(USAGE_FROZEN),
|
|
|
|
|
tr("Checks whether a given output is currently frozen by key image"));
|
|
|
|
|
m_cmd_binder.set_handler("lock",
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::lock, _1),
|
|
|
|
|
tr(USAGE_LOCK),
|
|
|
|
|
tr("Lock the wallet console, requiring the wallet password to continue"));
|
|
|
|
|
m_cmd_binder.set_handler("net_stats",
|
|
|
|
|
boost::bind(&simple_wallet::net_stats, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::net_stats, _1),
|
|
|
|
|
tr(USAGE_NET_STATS),
|
|
|
|
|
tr("Prints simple network stats"));
|
|
|
|
|
m_cmd_binder.set_handler("welcome",
|
|
|
|
|
boost::bind(&simple_wallet::welcome, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::welcome, _1),
|
|
|
|
|
tr(USAGE_WELCOME),
|
|
|
|
|
tr("Prints basic info about Monero for first time users"));
|
|
|
|
|
m_cmd_binder.set_handler("version",
|
|
|
|
|
boost::bind(&simple_wallet::version, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::version, _1),
|
|
|
|
|
tr(USAGE_VERSION),
|
|
|
|
|
tr("Returns version information"));
|
|
|
|
|
m_cmd_binder.set_handler("help",
|
|
|
|
|
boost::bind(&simple_wallet::help, this, _1),
|
|
|
|
|
boost::bind(&simple_wallet::on_command, this, &simple_wallet::help, _1),
|
|
|
|
|
tr(USAGE_HELP),
|
|
|
|
|
tr("Show the help section or the documentation about a <command>."));
|
|
|
|
|
m_cmd_binder.set_unknown_command_handler(boost::bind(&simple_wallet::on_command, this, &simple_wallet::on_unknown_command, _1));
|
|
|
|
|
m_cmd_binder.set_empty_command_handler(boost::bind(&simple_wallet::on_empty_command, this));
|
|
|
|
|
m_cmd_binder.set_cancel_handler(boost::bind(&simple_wallet::on_cancelled_command, this));
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
bool simple_wallet::set_variable(const std::vector<std::string> &args)
|
|
|
|
@ -3310,6 +3366,11 @@ bool simple_wallet::set_variable(const std::vector<std::string> &args)
|
|
|
|
|
success_msg_writer() << "setup-background-mining = " << setup_background_mining_string;
|
|
|
|
|
success_msg_writer() << "device-name = " << m_wallet->device_name();
|
|
|
|
|
success_msg_writer() << "export-format = " << (m_wallet->export_format() == tools::wallet2::ExportFormat::Ascii ? "ascii" : "binary");
|
|
|
|
|
success_msg_writer() << "inactivity-lock-timeout = " << m_wallet->inactivity_lock_timeout()
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
<< " (disabled on Windows)"
|
|
|
|
|
#endif
|
|
|
|
|
;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
@ -3366,6 +3427,7 @@ bool simple_wallet::set_variable(const std::vector<std::string> &args)
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("segregation-height", set_segregation_height, tr("unsigned integer"));
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("ignore-fractional-outputs", set_ignore_fractional_outputs, tr("0 or 1"));
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("track-uses", set_track_uses, tr("0 or 1"));
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("inactivity-lock-timeout", set_inactivity_lock_timeout, tr("unsigned integer (seconds, 0 to disable)"));
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("setup-background-mining", set_setup_background_mining, tr("1/yes or 0/no"));
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("device-name", set_device_name, tr("<device_name[:device_spec]>"));
|
|
|
|
|
CHECK_SIMPLE_VARIABLE("export-format", set_export_format, tr("\"binary\" or \"ascii\""));
|
|
|
|
@ -4156,6 +4218,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
|
|
|
|
|
tr("It is recommended that you do not use them, and ask recipients who ask for one to not endanger your privacy.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_last_activity_time = time(NULL);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
@ -4994,12 +5057,16 @@ bool simple_wallet::save_bc(const std::vector<std::string>& args)
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
void simple_wallet::on_new_block(uint64_t height, const cryptonote::block& block)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return;
|
|
|
|
|
if (!m_auto_refresh_refreshing)
|
|
|
|
|
m_refresh_progress_reporter.update(height, false);
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
void simple_wallet::on_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, const cryptonote::subaddress_index& subaddr_index, uint64_t unlock_time)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return;
|
|
|
|
|
message_writer(console_color_green, false) << "\r" <<
|
|
|
|
|
tr("Height ") << height << ", " <<
|
|
|
|
|
tr("txid ") << txid << ", " <<
|
|
|
|
@ -5030,11 +5097,15 @@ void simple_wallet::on_money_received(uint64_t height, const crypto::hash &txid,
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
void simple_wallet::on_unconfirmed_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, const cryptonote::subaddress_index& subaddr_index)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return;
|
|
|
|
|
// Not implemented in CLI wallet
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
void simple_wallet::on_money_spent(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& in_tx, uint64_t amount, const cryptonote::transaction& spend_tx, const cryptonote::subaddress_index& subaddr_index)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return;
|
|
|
|
|
message_writer(console_color_magenta, false) << "\r" <<
|
|
|
|
|
tr("Height ") << height << ", " <<
|
|
|
|
|
tr("txid ") << txid << ", " <<
|
|
|
|
@ -5048,10 +5119,14 @@ void simple_wallet::on_money_spent(uint64_t height, const crypto::hash &txid, co
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
void simple_wallet::on_skip_transaction(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
boost::optional<epee::wipeable_string> simple_wallet::on_get_password(const char *reason)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return boost::none;
|
|
|
|
|
// can't ask for password from a background thread
|
|
|
|
|
if (!m_in_manual_refresh.load(std::memory_order_relaxed))
|
|
|
|
|
{
|
|
|
|
@ -5060,9 +5135,7 @@ boost::optional<epee::wipeable_string> simple_wallet::on_get_password(const char
|
|
|
|
|
return boost::none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
std::string msg = tr("Enter password");
|
|
|
|
|
if (reason && *reason)
|
|
|
|
|
msg += std::string(" (") + reason + ")";
|
|
|
|
@ -5083,9 +5156,7 @@ void simple_wallet::on_device_button_request(uint64_t code)
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
boost::optional<epee::wipeable_string> simple_wallet::on_device_pin_request()
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
std::string msg = tr("Enter device PIN");
|
|
|
|
|
auto pwd_container = tools::password_container::prompt(false, msg.c_str());
|
|
|
|
|
THROW_WALLET_EXCEPTION_IF(!pwd_container, tools::error::password_entry_failed, tr("Failed to read device PIN"));
|
|
|
|
@ -5099,9 +5170,7 @@ boost::optional<epee::wipeable_string> simple_wallet::on_device_passphrase_reque
|
|
|
|
|
return boost::none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
std::string msg = tr("Enter device passphrase");
|
|
|
|
|
auto pwd_container = tools::password_container::prompt(false, msg.c_str());
|
|
|
|
|
THROW_WALLET_EXCEPTION_IF(!pwd_container, tools::error::password_entry_failed, tr("Failed to read device passphrase"));
|
|
|
|
@ -5148,9 +5217,7 @@ bool simple_wallet::refresh_main(uint64_t start_height, enum ResetType reset, bo
|
|
|
|
|
m_wallet->rescan_blockchain(reset == ResetHard, false, reset == ResetSoftKeepKI);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
rdln::suspend_readline pause_readline;
|
|
|
|
|
#endif
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
|
|
|
|
|
message_writer() << tr("Starting refresh...");
|
|
|
|
|
|
|
|
|
@ -5708,6 +5775,67 @@ bool simple_wallet::prompt_if_old(const std::vector<tools::wallet2::pending_tx>
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
void simple_wallet::check_for_inactivity_lock(bool user)
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_READLINE
|
|
|
|
|
PAUSE_READLINE();
|
|
|
|
|
rdln::clear_screen();
|
|
|
|
|
#endif
|
|
|
|
|
tools::clear_screen();
|
|
|
|
|
m_in_command = true;
|
|
|
|
|
if (!user)
|
|
|
|
|
{
|
|
|
|
|
const std::string speech = tr("I locked your Monero wallet to protect you while you were away");
|
|
|
|
|
std::vector<std::pair<std::string, size_t>> lines = tools::split_string_by_width(speech, 45);
|
|
|
|
|
|
|
|
|
|
size_t max_len = 0;
|
|
|
|
|
for (const auto &i: lines)
|
|
|
|
|
max_len = std::max(max_len, i.second);
|
|
|
|
|
const size_t n_u = max_len + 2;
|
|
|
|
|
tools::msg_writer() << " " << std::string(n_u, '_');
|
|
|
|
|
for (size_t i = 0; i < lines.size(); ++i)
|
|
|
|
|
tools::msg_writer() << (i == 0 ? "/" : i == lines.size() - 1 ? "\\" : "|") << " " << lines[i].first << std::string(max_len - lines[i].second, ' ') << " " << (i == 0 ? "\\" : i == lines.size() - 1 ? "/" : "|");
|
|
|
|
|
tools::msg_writer() << " " << std::string(n_u, '-') << std::endl <<
|
|
|
|
|
" \\ (__)" << std::endl <<
|
|
|
|
|
" \\ (oo)\\_______" << std::endl <<
|
|
|
|
|
" (__)\\ )\\/\\" << std::endl <<
|
|
|
|
|
" ||----w |" << std::endl <<
|
|
|
|
|
" || ||" << std::endl <<
|
|
|
|
|
"" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
tools::msg_writer() << tr("Locked due to inactivity. The wallet password is required to unlock the console.");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (get_and_verify_password())
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
catch (...) { /* do nothing, just let the loop loop */ }
|
|
|
|
|
}
|
|
|
|
|
m_last_activity_time = time(NULL);
|
|
|
|
|
m_in_command = false;
|
|
|
|
|
m_locked = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
bool simple_wallet::on_command(bool (simple_wallet::*cmd)(const std::vector<std::string>&), const std::vector<std::string> &args)
|
|
|
|
|
{
|
|
|
|
|
const time_t now = time(NULL);
|
|
|
|
|
time_t dt = now - m_last_activity_time;
|
|
|
|
|
m_last_activity_time = time(NULL);
|
|
|
|
|
|
|
|
|
|
m_in_command = true;
|
|
|
|
|
epee::misc_utils::auto_scope_leave_caller scope_exit_handler = epee::misc_utils::create_scope_leave_handler([&](){
|
|
|
|
|
m_last_activity_time = time(NULL);
|
|
|
|
|
m_in_command = false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
check_for_inactivity_lock(false);
|
|
|
|
|
return (this->*cmd)(args);
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::string> &args_, bool called_by_mms)
|
|
|
|
|
{
|
|
|
|
@ -8346,6 +8474,35 @@ void simple_wallet::wallet_idle_thread()
|
|
|
|
|
if (!m_idle_run.load(std::memory_order_relaxed))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
m_inactivity_checker.do_call(boost::bind(&simple_wallet::check_inactivity, this));
|
|
|
|
|
#endif
|
|
|
|
|
m_refresh_checker.do_call(boost::bind(&simple_wallet::check_refresh, this));
|
|
|
|
|
m_mms_checker.do_call(boost::bind(&simple_wallet::check_mms, this));
|
|
|
|
|
|
|
|
|
|
if (!m_idle_run.load(std::memory_order_relaxed))
|
|
|
|
|
break;
|
|
|
|
|
m_idle_cond.wait_for(lock, boost::chrono::seconds(1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
bool simple_wallet::check_inactivity()
|
|
|
|
|
{
|
|
|
|
|
// inactivity lock
|
|
|
|
|
if (!m_locked && !m_in_command)
|
|
|
|
|
{
|
|
|
|
|
const uint32_t seconds = m_wallet->inactivity_lock_timeout();
|
|
|
|
|
if (seconds > 0 && time(NULL) - m_last_activity_time > seconds)
|
|
|
|
|
{
|
|
|
|
|
m_locked = true;
|
|
|
|
|
m_cmd_binder.cancel_input();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
bool simple_wallet::check_refresh()
|
|
|
|
|
{
|
|
|
|
|
// auto refresh
|
|
|
|
|
if (m_auto_refresh_enabled)
|
|
|
|
|
{
|
|
|
|
@ -8360,7 +8517,11 @@ void simple_wallet::wallet_idle_thread()
|
|
|
|
|
catch(...) {}
|
|
|
|
|
m_auto_refresh_refreshing = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
bool simple_wallet::check_mms()
|
|
|
|
|
{
|
|
|
|
|
// Check for new MMS messages;
|
|
|
|
|
// For simplicity auto message check is ALSO controlled by "m_auto_refresh_enabled" and has no
|
|
|
|
|
// separate thread either; thread syncing is tricky enough with only this one idle thread here
|
|
|
|
@ -8368,15 +8529,13 @@ void simple_wallet::wallet_idle_thread()
|
|
|
|
|
{
|
|
|
|
|
check_for_messages();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!m_idle_run.load(std::memory_order_relaxed))
|
|
|
|
|
break;
|
|
|
|
|
m_idle_cond.wait_for(lock, boost::chrono::seconds(90));
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
//----------------------------------------------------------------------------------------------------
|
|
|
|
|
std::string simple_wallet::get_prompt() const
|
|
|
|
|
{
|
|
|
|
|
if (m_locked)
|
|
|
|
|
return std::string("[") + tr("locked due to inactivity") + "]";
|
|
|
|
|
std::string addr_start = m_wallet->get_subaddress_as_str({m_current_subaddress_account, 0}).substr(0, 6);
|
|
|
|
|
std::string prompt = std::string("[") + tr("wallet") + " " + addr_start;
|
|
|
|
|
if (!m_wallet->check_connection(NULL))
|
|
|
|
@ -9547,6 +9706,7 @@ int main(int argc, char* argv[])
|
|
|
|
|
std::locale::global(boost::locale::generator().generate(""));
|
|
|
|
|
boost::filesystem::path::imbue(std::locale());
|
|
|
|
|
#endif
|
|
|
|
|
setlocale(LC_CTYPE, "");
|
|
|
|
|
|
|
|
|
|
po::options_description desc_params(wallet_args::tr("Wallet options"));
|
|
|
|
|
tools::wallet2::init_options(desc_params);
|
|
|
|
|