aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #2569Riccardo Spagni2017-10-151-2/+0
|\ \ | | | | | | | | | b5b4abb8 simplewallet: fix setting default-ring-size to 0 (moneromooo-monero)
| * | simplewallet: fix setting default-ring-size to 0moneromooo-monero2017-10-031-2/+0
| | | | | | | | | | | | It'd be set to the current wallet default instead
* | | Merge pull request #2554Riccardo Spagni2017-10-151-1/+18
|\ \ \ | | | | | | | | | | | | d74336d5 wallet: encrypt (un)signed tx, also optionally save unencrypted raw tx hexstr (stoffu)
| * | | wallet: encrypt (un)signed tx, also optionally save unencrypted raw tx hexstrstoffu2017-10-071-1/+18
| | |/ | |/|
* | | Merge pull request #2550Riccardo Spagni2017-10-151-3/+3
|\ \ \ | | | | | | | | | | | | 735fafec simplewallet: allow 1/yes/y as well as true for start_mining options (moneromooo-monero)
| * | | simplewallet: allow 1/yes/y as well as true for start_mining optionsmoneromooo-monero2017-09-291-3/+3
| | | | | | | | | | | | | | | | Also mention those options in the start_mining help line
* | | | Merge pull request #2549Riccardo Spagni2017-10-151-1/+2
|\ \ \ \ | | | | | | | | | | | | | | | bf2d9113 simplewallet: fix --restore-from-height being ignored (moneromooo-monero)
| * | | | simplewallet: fix --restore-from-height being ignoredmoneromooo-monero2017-09-291-1/+2
| |/ / /
* | / / Subaddresseskenshi842017-10-071-197/+628
| |/ / |/| |
* | | Merge pull request #2468Riccardo Spagni2017-10-061-2/+22
|\ \ \ | |_|/ |/| | | | | 986d03d4 simplewallet: allow to set threshold before warning about tx backlog (selsta)
| * | simplewallet: allow to set threshold before warning about tx backlogselsta2017-10-021-2/+22
| |/
* | Merge pull request #2515Riccardo Spagni2017-10-021-0/+3
|\ \ | | | | | | | | | c34093db simplewallet: add privacy warning when using an untrusted demon (moneromooo-monero)
| * | simplewallet: add privacy warning when using an untrusted demonmoneromooo-monero2017-09-221-0/+3
| | |
* | | Merge pull request #2512Riccardo Spagni2017-10-021-3/+5
|\ \ \ | |_|/ |/| | | | | | | | | | | 792ba4f0 Log categories can now be added to and removed from (moneromooo-monero) 48f92eb6 easylogging++: add categories getter (moneromooo-monero) f35afe62 epee: factor log level/categories setting (moneromooo-monero)
| * | Log categories can now be added to and removed frommoneromooo-monero2017-09-221-3/+5
| |/ | | | | | | Also, set_log without parameters now prints the log categories
* | move checkpoints in a separate librarymoneromooo-monero2017-09-251-1/+1
| |
* | Merge pull request #2452Riccardo Spagni2017-09-251-0/+3
|\ \ | | | | | | | | | | | | | | | 0aaaca29 tx_pool: set the "invalid input" bit when check_tx_inputs fails (moneromooo-monero) 9236823b simplewallet: print tx rejection reason where it was missing (moneromooo-monero) 3dee3301 core_rpc_server: print tx rejection reason at L0 too (moneromooo-monero)
| * | simplewallet: print tx rejection reason where it was missingmoneromooo-monero2017-09-161-0/+3
| | |
* | | simplewallet: guard against I/O exceptionsmoneromooo-monero2017-09-251-3/+12
| | | | | | | | | | | | CID 175308
* | | Merge pull request #2257Riccardo Spagni2017-09-251-2/+29
|\ \ \ | |_|/ |/| | | | | 651baaec wallet: add encrypted seed functionality (moneromooo-monero)
| * | wallet: add encrypted seed functionalitymoneromooo-monero2017-09-121-2/+29
| |/ | | | | | | | | This uses luigi1111's CN_Add method. See https://xmr.llcoins.net for details.
* | Merge pull request #2412Riccardo Spagni2017-09-201-2/+2
|\ \ | | | | | | | | | 81fb2f53 Silence more stupid gcc warnings (Howard Chu)
| * | Silence more stupid gcc warningsHoward Chu2017-09-081-2/+2
| |/
* | Merge pull request #2381Riccardo Spagni2017-09-201-0/+10
|\ \ | |/ |/| | | | | 840aed1c monero-wallet-cli: New command 'wallet_info' improved (rbrunner7) 9bdd985c monero-wallet-cli: New command 'wallet_info' (rbrunner7)
| * monero-wallet-cli: New command 'wallet_info' improvedrbrunner72017-08-311-5/+4
| |
| * monero-wallet-cli: New command 'wallet_info'rbrunner72017-08-311-0/+11
| |
* | Merge pull request #2362Riccardo Spagni2017-09-021-3/+66
|\ \ | | | | | | | | | adce8ae4 simplewallet: new "fee" command to display fee information (moneromooo-monero)
| * | simplewallet: new "fee" command to display fee informationmoneromooo-monero2017-08-291-3/+66
| |/ | | | | | | including expected transaction backlog at different priorities
* | Merge pull request #2316Riccardo Spagni2017-09-021-0/+1
|\ \ | |/ |/| | | 0c6c3eb3 Silence stupid fallthru warning in gcc 7 (Howard Chu)
| * Silence stupid fallthru warning in gcc 7Howard Chu2017-08-211-0/+1
| |
* | Merge pull request #2320Riccardo Spagni2017-08-261-0/+8
|\ \ | | | | | | | | | | | | c656dd0e Fix refresh counter display (Howard Chu) c088d38a Simplify readline support (Howard Chu)
| * | Fix refresh counter displayHoward Chu2017-08-221-0/+8
| |/ | | | | | | Suspend readline when refreshing
* / wallet: new option to check/confirm txpool backlog when sendingmoneromooo-monero2017-08-261-1/+57
|/
* Merge pull request #2293Riccardo Spagni2017-08-151-1/+13
|\ | | | | | | dee41efa simplewallet: mnemonic language command-line arg (Eugene Otto)
| * simplewallet: mnemonic language command-line argEugene Otto2017-08-131-1/+13
| | | | | | | | | | Add `--mnemonic-language` command-line arg so it's possible to generate a wallet without interacting with the CLI.
* | Merge pull request #2281Riccardo Spagni2017-08-151-80/+8
|\ \ | | | | | | | | | | | | e499ff33 simplewallet: factor out message_writer (moneromooo-monero) 7ed5ab47 scoped_message_writer: pause readline to match simplewallet (moneromooo-monero)
| * | simplewallet: factor out message_writermoneromooo-monero2017-08-111-80/+8
| |/
* | Merge pull request #2279Riccardo Spagni2017-08-151-0/+6
|\ \ | | | | | | | | | | | | 359517c7 wallet_rpc_server: fix possible privacy leak in on_import_key_images() (Jaquee) 20495b27 simplewallet: fix possible privacy leak in import_key_images() (Jaquee)
| * | simplewallet: fix possible privacy leak in import_key_images()Jaquee2017-08-111-0/+6
| |/
* | Merge pull request #2256Riccardo Spagni2017-08-151-6/+11
|\ \ | | | | | | | | | 042b86c4 simplewallet: do not ask wallet filename twice when restoring (moneromooo-monero)
| * | simplewallet: do not ask wallet filename twice when restoringmoneromooo-monero2017-08-061-6/+11
| | | | | | | | | | | | | | | It's annoying and pointless (especially as it's the only thing where the user is asked twice)
* | | Merge pull request #2255Riccardo Spagni2017-08-151-2/+2
|\ \ \ | | | | | | | | | | | | 8bbed275 simplewallet: Be explicit about secret keys (Erik de Castro Lopo)
| * | | simplewallet: Be explicit about secret keysErik de Castro Lopo2017-08-061-2/+2
| |/ / | | | | | | | | | | | | | | | Previously, the wallet just asked for "Spend key" and "View key" but now it specifies that these should be the secret versions of these keys.
* | | Merge pull request #2240Riccardo Spagni2017-08-151-2/+14
|\ \ \ | | | | | | | | | | | | | | | | | | | | b7d6ec83 simplewallet: add (out of sync) or (no daemon) markers in the prompt (moneromooo-monero) fa23a500 wallet2: add a is_synced function (moneromooo-monero) f1307bbd node_rpc_proxy: add a proxy for target height (moneromooo-monero)
| * | | simplewallet: add (out of sync) or (no daemon) markers in the promptmoneromooo-monero2017-08-021-2/+14
| |/ / | | | | | | | | | | | | Should help people who don't realize why they haven't seen their monero yet.
* | | Merge pull request #2205Riccardo Spagni2017-08-151-0/+35
|\ \ \ | |_|/ |/| | | | | c97d1bd3 wallet: return unlock_time in get_transfers (moneromooo-monero)
| * | wallet: return unlock_time in get_transfersmoneromooo-monero2017-08-021-0/+35
| |/ | | | | | | also show it in simplewallet's show_transfer
* | change mixin to ring size in user visible placesmoneromooo-monero2017-08-071-39/+43
| |
* | Merge pull request #2218Riccardo Spagni2017-08-071-3/+144
|\ \ | | | | | | | | | | | | 02f13d6c Fix handling of strings & simplify summation of spendkeys (JollyMort) 40fc9d7b Add option to join multisig wallet pieces together (JollyMort)
| * | Fix handling of strings & simplify summation of spendkeysJollyMort2017-07-291-13/+7
| | |