summaryrefslogtreecommitdiff
path: root/src/simplewallet
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1765Riccardo Spagni2017-02-221-8/+7
|\ | | | | | | 5cfddd74 Add support for smart mining through wallet. (Dion Ahmetaj)
| * Add support for smart mining through wallet.Dion Ahmetaj2017-02-211-8/+7
| |
* | update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-213-3/+3
|/
* simplewallet: validate hex input sizemoneromooo-monero2017-02-141-9/+9
|
* Merge pull request #1698Riccardo Spagni2017-02-111-0/+6
|\ | | | | | | 9459f331 simplewallet: print error when address is wrong (kenshi84)
| * simplewallet: print error when address is wrongkenshi842017-02-081-0/+6
| |
* | Merge pull request #1689Riccardo Spagni2017-02-112-2/+2
|\ \ | | | | | | | | | ce7fcbb4 Add server auth to monerod, and client auth to wallet-cli and wallet-rpc (Lee Clagett)
| * | Add server auth to monerod, and client auth to wallet-cli and wallet-rpcLee Clagett2017-02-062-2/+2
| |/
* / extract some basic code from libcryptonote_core into libcryptonote_basickenshi842017-02-082-3/+3
|/
* Merge pull request #1665Riccardo Spagni2017-02-041-6/+1
|\ | | | | | | | | 34719071 simplewallet: cleanup (moneromooo-monero) a9a9b64b simplewallet: fix build (unqualified type not in current scope) (moneromooo-monero)
| * simplewallet: cleanupmoneromooo-monero2017-02-021-5/+0
| | | | | | | | | | Remove empty static function which was refactored, as well as leftover exception testing code.
| * simplewallet: fix build (unqualified type not in current scope)moneromooo-monero2017-02-021-1/+1
| |
* | Merge pull request #1640Riccardo Spagni2017-02-042-0/+43
|\ \ | |/ |/| | | f97526e6 simplewallet: option to always ask password for any crytical operations (kenshi84)
| * simplewallet: option to always ask password for any crytical operationskenshi842017-02-032-0/+43
| |
* | Merge pull request #1645Riccardo Spagni2017-02-021-29/+2
|\ \ | | | | | | | | | 9bd9906e Factor is_address_local code into a tools function (moneromooo-monero)
| * | Factor is_address_local code into a tools functionmoneromooo-monero2017-01-281-29/+2
| |/
* | Merge pull request #1639Riccardo Spagni2017-02-022-0/+28
|\ \ | | | | | | | | | 48aa9cf0 Add change_password for simplewallet (Ashley Perpetual)
| * | Add change_password for simplewalletAshley Perpetual2017-01-292-0/+28
| |/
* | Merge pull request #1629Riccardo Spagni2017-02-021-6/+7
|\ \ | | | | | | | | | c02e1cb9 Updates to epee HTTP client code - http_simple_client now uses std::chrono for timeouts - http_simple_client accepts timeouts per connect / invoke call - shortened names of epee http invoke functions - invoke command functions only take relative path, connection is not automatically performed (Lee Clagett)
| * | Updates to epee HTTP client codeLee Clagett2017-01-251-6/+7
| |/ | | | | | | | | | | | | | | - http_simple_client now uses std::chrono for timeouts - http_simple_client accepts timeouts per connect / invoke call - shortened names of epee http invoke functions - invoke command functions only take relative path, connection is not automatically performed
* / moved get_account_address_from_str_or_url from libcommon to libcryptonote_corekenshi842017-01-241-5/+5
|/
* Merge pull request #1599Riccardo Spagni2017-01-201-8/+8
|\ | | | | | | 17246d05 wallet: print exception message on get_random_outs_error (moneromooo-monero)
| * wallet: print exception message on get_random_outs_errormoneromooo-monero2017-01-201-8/+8
| |
* | simplewallet: use MAKE_CORE_RPC_VERSION(1,4) instead of 0x10004kenshi842017-01-181-1/+1
|/
* Merge pull request #1569Riccardo Spagni2017-01-151-16/+64
|\ | | | | | | 16b8b66a specify restore height by YYYY-MM-DD format (kenshi84)
| * specify restore height by YYYY-MM-DD formatkenshi842017-01-161-16/+64
| |
* | Change logging to easylogging++moneromooo-monero2017-01-162-32/+41
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the epee and data_loggers logging systems with a single one, and also adds filename:line and explicit severity levels. Categories may be defined, and logging severity set by category (or set of categories). epee style 0-4 log level maps to a sensible severity configuration. Log files now also rotate when reaching 100 MB. To select which logs to output, use the MONERO_LOGS environment variable, with a comma separated list of categories (globs are supported), with their requested severity level after a colon. If a log matches more than one such setting, the last one in the configuration string applies. A few examples: This one is (mostly) silent, only outputting fatal errors: MONERO_LOGS=*:FATAL This one is very verbose: MONERO_LOGS=*:TRACE This one is totally silent (logwise): MONERO_LOGS="" This one outputs all errors and warnings, except for the "verify" category, which prints just fatal errors (the verify category is used for logs about incoming transactions and blocks, and it is expected that some/many will fail to verify, hence we don't want the spam): MONERO_LOGS=*:WARNING,verify:FATAL Log levels are, in decreasing order of priority: FATAL, ERROR, WARNING, INFO, DEBUG, TRACE Subcategories may be added using prefixes and globs. This example will output net.p2p logs at the TRACE level, but all other net* logs only at INFO: MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE Logs which are intended for the user (which Monero was using a lot through epee, but really isn't a nice way to go things) should use the "global" category. There are a few helper macros for using this category, eg: MGINFO("this shows up by default") or MGINFO_RED("this is red"), to try to keep a similar look and feel for now. Existing epee log macros still exist, and map to the new log levels, but since they're used as a "user facing" UI element as much as a logging system, they often don't map well to log severities (ie, a log level 0 log may be an error, or may be something we want the user to see, such as an important info). In those cases, I tried to use the new macros. In other cases, I left the existing macros in. When modifying logs, it is probably best to switch to the new macros with explicit levels. The --log-level options and set_log commands now also accept category settings, in addition to the epee style log levels.
* Merge pull request #1562Riccardo Spagni2017-01-131-78/+9
|\ | | | | | | a081b39c Move key image export/import functions to wallet2 (Jaquee)
| * Move key image export/import functions to wallet2Jaquee2017-01-131-78/+9
| |
* | Merge pull request #1559Riccardo Spagni2017-01-132-0/+6
|\ \ | | | | | | | | | db56a03f Wallet2 + API: Callbacks for unconfirmed transfers (Jaquee)
| * | Wallet2 + API: Callbacks for unconfirmed transfersJaquee2017-01-122-0/+6
| | |
* | | Merge pull request #1545Riccardo Spagni2017-01-131-0/+1
|\ \ \ | | | | | | | | | | | | 5ae00f0f add msg for donate (luigi1111)
| * | | add msg for donateluigi11112017-01-081-0/+1
| |/ / | | | | | | | | | #1498
* | | Merge pull request #1492Riccardo Spagni2017-01-132-14/+152
|\ \ \ | |_|/ |/| | | | | f1dde1a4 wallet cli: print originating block heights of mixin keys when making transfer (kenshi84)
| * | wallet cli: print originating block heights of mixin keys when making transferkenshi842017-01-092-14/+152
| |/
* / Fix monero-wallet-cli compileluigi11112017-01-081-1/+1
|/ | | | Not 100$ sure this is the right fix, nor whether address book entries from URL should be stored as addresses or URLs (or both with a check for change on payment).
* Merge pull request #1537Riccardo Spagni2017-01-082-0/+124
|\ | | | | | | | | c2135082 simplewallet: add a show_transfer <txid> command (moneromooo-monero) 19c4041d wallet_rpc_server: new RPC call to get a transfer by txid (moneromooo-monero)
| * simplewallet: add a show_transfer <txid> commandmoneromooo-monero2017-01-082-0/+124
| |
* | Merge pull request #1503Riccardo Spagni2017-01-081-24/+8
|\ \ | | | | | | | | | 542571f5 simplewallet: remove unnecessary local_args.erase(...) in set_variable() (kenshi84)
| * | simplewallet: remove unnecessary local_args.erase(...) in set_variable()kenshi842016-12-261-24/+8
| |/
* | Merge pull request #1496Riccardo Spagni2017-01-082-0/+120
|\ \ | | | | | | | | | adee1644 wallet cli: print unspent outputs with histogram (kenshi84)
| * | wallet cli: print unspent outputs with histogramkenshi842016-12-262-0/+120
| |/
* | Merge pull request #1482Riccardo Spagni2017-01-082-0/+82
|\ \ | | | | | | | | | 38f00d07 wallet cli: viewing and editing address book (kenshi84)
| * | wallet cli: viewing and editing address bookkenshi842016-12-212-0/+82
| |/
* / make openalias also available for solo miner; introduce namespace ↵kenshi842016-12-212-74/+5
|/ | | | tools::dns_utils; support integrated address with dns lookup
* simplewallet: bump output file format versionmoneromooo-monero2016-12-201-1/+1
| | | | | | | | The serialization format changed, and while there is code to load the older serialization format, an older monerod will not be able to load a file saved by a new monerod, even though both share the same version. This is not good, and we prefer a version bump.
* Merge pull request #1472Riccardo Spagni2016-12-202-163/+59
|\ | | | | | | 2bddb8eb Refactored password prompting for wallets (Lee Clagett)
| * Refactored password prompting for walletsLee Clagett2016-12-192-163/+59
| |
* | Merge pull request #1469Riccardo Spagni2016-12-201-1/+1
|\ \ | | | | | | | | | 9e4b3724 simplewallet: add pending/pool/failed in the show_transfers help (moneromooo-monero)
| * | simplewallet: add pending/pool/failed in the show_transfers helpmoneromooo-monero2016-12-171-1/+1
| |/ | | | | | | reported by nioc