aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api
Commit message (Collapse)AuthorAgeFilesLines
...
| * Wallet API: add spend/view key gettersJaquee2017-05-022-2/+20
| |
* | wallet: add sweep_below functionmoneromooo-monero2017-04-241-1/+1
| | | | | | | | | | | | | | It sweeps all outputs below the given threshold This is available via the existing sweep_all RPC, by setting amount_threshold the desired amount (in atomic units)
* | Wallet API: fix Cold signing split txJaquee2017-04-021-4/+10
|/
* Wallet API: add hard fork info functionsJaquee2017-03-244-22/+14
|
* wallet: fix set_log not handling 0,xxx style settingsmoneromooo-monero2017-03-211-1/+1
|
* use const references in catch blocksmoneromooo-monero2017-03-182-2/+2
|
* wallet api: fix parameters in wallet2callbackImplJaquee2017-03-031-7/+7
|
* Merge pull request #1827Riccardo Spagni2017-03-032-2/+4
|\ | | | | | | db1c7d80 wallet api: add missing mining options (Jaquee)
| * wallet api: add missing mining optionsJaquee2017-03-022-2/+4
| |
* | Wallet API: Add support for daemon rpc loginJaquee2017-02-252-3/+6
|/
* wallet2_api: add updates check apimoneromooo-monero2017-02-221-0/+28
|
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-2114-15/+15
|
* Merge pull request #1747Riccardo Spagni2017-02-212-1/+5
|\ | | | | | | 26bd7aac wallet_api: fix logging init via api (moneromooo-monero)
| * wallet_api: fix logging init via apimoneromooo-monero2017-02-182-1/+5
| |
* | simplewallet: validate hex input sizemoneromooo-monero2017-02-142-5/+5
|/
* 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
| |
* | Merge pull request #1685Riccardo Spagni2017-02-111-0/+6
|\ \ | | | | | | | | | 7549116e Wallet API: Easylogger wrapper for gui (Jaquee)
| * | Wallet API: Easylogger wrapper for guiJaquee2017-02-051-0/+6
| | |
* | | extract some basic code from libcryptonote_core into libcryptonote_basickenshi842017-02-082-6/+4
| | |
* | | Merge pull request #1679Riccardo Spagni2017-02-081-2/+7
|\ \ \ | |/ / |/| | | | | 4efc926d Wallet API: Catch error from tools::is_local_address (Jaquee)
| * | Wallet API: Catch error from tools::is_local_addressJaquee2017-02-051-2/+7
| |/
* | GUI: Improved refresh performanceJaquee2017-02-041-7/+10
| |
* | wallet api: Remove initAsync() and don't start refresh automatically on initJaquee2017-02-042-17/+2
|/
* Merge pull request #1645Riccardo Spagni2017-02-021-36/+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-36/+2
| |
* | Merge pull request #1629Riccardo Spagni2017-02-023-28/+27
|\ \ | | | | | | | | | 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-253-28/+27
| | | | | | | | | | | | | | | | | | | | | | | | - 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
* | | Wallet API: Create wallet from keysJaquee2017-01-304-0/+158
| |/ |/|
* | Wallet api: testnet getter=2017-01-221-0/+1
|/
* Merge pull request #1599Riccardo Spagni2017-01-201-2/+2
|\ | | | | | | 17246d05 wallet: print exception message on get_random_outs_error (moneromooo-monero)
| * wallet: print exception message on get_random_outs_errormoneromooo-monero2017-01-201-2/+2
| |
* | wallet2_api: add API to set log categoriesmoneromooo-monero2017-01-161-0/+5
|/
* Change logging to easylogging++moneromooo-monero2017-01-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #1561Riccardo Spagni2017-01-153-4/+2
|\ | | | | | | | | | | | | | | | | | | d561f4ad enable clang checks that were disabled (Chris Vickio) 0aefb2f6 remove std::move from return statements (pessimizing-move warning) (Chris Vickio) 629d5b76 change counter from bool to int (deprecated-increment-bool warning) (Chris Vickio) fb76d439 add extra braces around subobjects (missing-braces warning) (Chris Vickio) 3b6d5f25 make struct/class declarations consistent (mismatched-tags warning) (Chris Vickio) fcf66925 remove unused fields from network_throttle (unused-private-field warning) (Chris Vickio) 296f8c16 inline unused function (for unused-function warning) (Chris Vickio)
| * make struct/class declarations consistent (mismatched-tags warning)Chris Vickio2017-01-143-4/+2
| |
* | Merge pull request #1573Riccardo Spagni2017-01-151-2/+4
|\ \ | | | | | | | | | dea53962 fix timeout in check_connection (Jaquee)
| * | fix timeout in check_connectionJaquee2017-01-141-2/+4
| | |
* | | Merge pull request #1564Riccardo Spagni2017-01-152-6/+52
|\ \ \ | | | | | | | | | | | | 1d317981 Wallet API: add key image import/export functions (Jaquee)
| * | | Wallet API: add key image import/export functionsJaquee2017-01-132-6/+52
| |/ /
* | | Merge pull request #1560Riccardo Spagni2017-01-152-1/+19
|\ \ \ | | | | | | | | | | | | 46550c0b Wallet API: add rescanSpent() (Jaquee)
| * | | Wallet API: add rescanSpent()Jaquee2017-01-132-1/+19
| |/ /
* / / Wallet API: support integrated addresses in address book.Jaquee2017-01-131-12/+42
|/ /
* | Merge pull request #1559Riccardo Spagni2017-01-134-5/+54
|\ \ | | | | | | | | | db56a03f Wallet2 + API: Callbacks for unconfirmed transfers (Jaquee)
| * | Wallet2 + API: Callbacks for unconfirmed transfersJaquee2017-01-124-5/+54
| |/
* | Merge pull request #1541Riccardo Spagni2017-01-136-4/+440
|\ \ | | | | | | | | | | | | | | | 0d3918e1 Wallet api: Update trustedDaemon when daemon is changed (Jaquee) dbb838f4 GUI cold signing (Jaquee) afb85a02 Wallet API: functions for supporting/creating view only wallets (Jaquee)
| * | Wallet api: Update trustedDaemon when daemon is changedJaquee2017-01-101-0/+6
| | |
| * | GUI cold signingJaquee2017-01-106-4/+434
| | | | | | | | | | | | fix conflict
| * | Wallet API: functions for supporting/creating view only walletsJaquee2017-01-102-5/+66
| |/
* | Merge pull request #1526Riccardo Spagni2017-01-132-5/+66
|\ \ | | | | | | | | | 5eed5b05 Wallet API: functions for supporting/creating view only wallets (Jaquee)