aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
| * monero-wallet-cli: improve error message when tx amount is zeroElliot Wirrick2021-04-071-1/+6
| |
* | Merge pull request #7002luigi11112021-04-161-0/+1
|\ \ | |/ |/| | | 673c6d2 Reduce compilation time of epee/portable_storage_template_helper.h (mj-xmr)
| * Reduce compilation time of epee/portable_storage_template_helper.hmj-xmr2021-03-281-0/+1
| |
* | Merge pull request #7358luigi11112021-03-291-2/+20
|\ \ | |/ |/| | | f346e3e wallet_rpc_payments: implement multithreading (gdmojo)
| * wallet_rpc_payments: implement multithreadinggdmojo2021-02-201-2/+20
| |
* | Merge pull request #7355luigi11112021-02-181-1/+1
|\ \ | | | | | | | | | | | | bd12984 Remove copies from foreach loops (thanks to Clang) (Lee Clagett) 1572df9 Removing unused namespace alias (Lee Clagett)
| * | Remove copies from foreach loops (thanks to Clang)Lee Clagett2021-01-281-1/+1
| |/
* | Merge pull request #7346luigi11112021-02-181-8/+1
|\ \ | | | | | | | | | 85db173 Remove unused variables in monero codebase (Kevin Barbour)
| * | Remove unused variables in monero codebaseKevin Barbour2021-02-091-8/+1
| |/ | | | | | | | | | | | | | | | | | | | | There are quite a few variables in the code that are no longer (or perhaps never were) in use. These were discovered by enabling compiler warnings for unused variables and cleaning them up. In most cases where the unused variables were the result of a function call the call was left but the variable assignment removed, unless it was obvious that it was a simple getter with no side effects.
* | Merge pull request #7340luigi11112021-02-181-1/+1
|\ \ | | | | | | | | | ccd0f2b Simplewallet.cpp: Add export_outputs help (SomaticFanatic)
| * | Simplewallet.cpp: Add export_outputs helpSomaticFanatic2021-01-211-1/+1
| |/ | | | | | | See #6547
* | Merge pull request #7312luigi11112021-02-181-1/+44
|\ \ | | | | | | | | | 186271e monero-wallet-cli: Added command scan_tx (Horia Mihai David)
| * | monero-wallet-cli: Added command scan_txHoria Mihai David2021-02-171-1/+44
| | | | | | | | | | | | To implement this feature, the wallet2::scan_tx API was implemented.
* | | Merge pull request #7319luigi11112021-02-161-1/+1
|\ \ \ | | | | | | | | | | | | 993e9be simplewallet: allow setting --restore-height 0 (selsta)
| * | | simplewallet: allow setting --restore-height 0selsta2021-01-131-1/+1
| |/ /
* | | Merge pull request #7242luigi11112021-02-151-5/+20
|\ \ \ | |_|/ |/| | | | | 021a281 simplewallet: Add input file parameter to sign_transfer (Steff Richards)
| * | simplewallet: Add input file parameter to sign_transferSteff Richards2020-12-311-5/+20
| |/
* | Merge pull request #7113luigi11112021-01-151-4/+9
|\ \ | |/ |/| | | 7f30c49 simplewallet: don't complain about connecting to the daemon when offline (moneromooo-monero)
| * simplewallet: don't complain about connecting to the daemon when offlinemoneromooo-monero2020-12-101-4/+9
| |
* | Merge pull request #7173Alexander Blair2020-12-261-8/+39
|\ \ | | | | | | | | | d2fda6c25 restrict public node checks a little (moneromooo-monero)
| * | restrict public node checks a littlemoneromooo-monero2020-12-221-8/+39
| |/ | | | | | | | | do not include blocked hosts in peer lists or public node lists by default, warn about no https on clearnet and about untrusted peers likely being spies
* | Merge pull request #6931Alexander Blair2020-12-261-2/+28
|\ \ | |/ |/| | | fbb03ef2a simplewallet: add "address mnew" command (codesoap)
| * simplewallet: add "address mnew" commandcodesoap2020-12-261-2/+28
| |
* | wallet2: skip reorgs exceeding max-reorg-depth wallet settingxiphon2020-10-131-0/+20
|/
* Merge pull request #6819v0.17.0.0luigi11112020-09-151-1/+1
|\ | | | | | | c3f354e simplewallet fix wrong persistent-rpc-client-id name in help (moneromooo-monero)
| * simplewallet fix wrong persistent-rpc-client-id name in helpmoneromooo-monero2020-09-141-1/+1
| |
* | wallet2: adapt to deterministic unlock timeTheCharlatan2020-09-151-4/+4
|/
* Bind signature to full address and signing modeSarang Noether2020-08-281-6/+2
|
* wallet: allow signing a message with spend or view keymoneromooo-monero2020-08-281-11/+27
|
* Merge pull request #6752Alexander Blair2020-08-271-3/+21
|\ | | | | | | | | 85899230d simplewallet: allow setting tx keys when sending to a subaddress (moneromooo-monero) e916201f1 wallet2: fix setting tx keys when another is already set (moneromooo-monero)
| * simplewallet: allow setting tx keys when sending to a subaddressmoneromooo-monero2020-08-101-3/+21
| | | | | | | | The tx key derivation is different then
* | replace most boost serialization with existing monero serializationmoneromooo-monero2020-08-171-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reduces the attack surface for data that can come from malicious sources (exported output and key images, multisig transactions...) since the monero serialization is already exposed to the outside, and the boost lib we were using had a few known crashers. For interoperability, a new load-deprecated-formats wallet setting is added (off by default). This allows loading boost format data if there is no alternative. It will likely go at some point, along with the ability to load those. Notably, the peer lists file still uses the boost serialization code, as the data it stores is define in epee, while the new serialization code is in monero, and migrating it was fairly hairy. Since this file is local and not obtained from anyone else, the marginal risk is minimal, but it could be migrated later if needed. Some tests and tools also do, this will stay as is for now.
* | Merge pull request #6677Alexander Blair2020-08-161-0/+26
|\ \ | | | | | | | | | f9e3fcdf3 add trezor support to sweep_single (Dusan Klinec)
| * | add trezor support to sweep_singleDusan Klinec2020-06-211-0/+26
| | |
* | | Wallet, daemon: From 'help_advanced' back to 'help', and new 'apropos' commandrbrunner72020-07-241-41/+70
| |/ |/|
* | Merge pull request #6537Alexander Blair2020-07-191-8/+8
|\ \ | | | | | | | | | 5e0ea6e95 simplewallet: add missing calls to on_command (moneromooo-monero)
| * | simplewallet: add missing calls to on_commandmoneromooo-monero2020-05-161-8/+8
| | | | | | | | | | | | It resets the inactivity time
* | | Merge pull request #6512Alexander Blair2020-07-191-1/+1
|\ \ \ | | | | | | | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * | | Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| |/ / | | | | | | | | | Update copyright year to 2020
* | | Merge pull request #6488Alexander Blair2020-07-161-0/+63
|\ \ \ | |_|/ |/| | | | | 99684e3e simplewallet: add show_qr_code command (selsta)
| * | simplewallet: add show_qr_code commandselsta2020-06-211-0/+63
| | | | | | | | | | | | Thanks to iDunk for helping with Windows.
* | | Merge pull request #6549luigi11112020-06-081-2/+40
|\ \ \ | | | | | | | | | | | | | | | | 82d21f5 easylogging++: sanitize log payload (moneromooo-monero) 7d0b7e8 [master] MMS: New 'config_checksum' subcommand (rbrunner7)
| * | | [master] MMS: New 'config_checksum' subcommandrbrunner72020-05-241-2/+40
| | |/ | |/|
* | | Merge pull request #6525luigi11112020-06-081-2/+2
|\ \ \ | | | | | | | | | | | | 86cf811 simplewallet: don't complain about incoming payment ids on change (moneromooo-monero)
| * | | simplewallet: don't complain about incoming payment ids on changemoneromooo-monero2020-05-131-2/+2
| |/ /
* / / Fix boost <1.60 compilation and fix boost 1.73+ warningsLee Clagett2020-05-311-0/+5
|/ /
* | Merge pull request #6467luigi11112020-05-051-4/+14
|\ \ | |/ |/| | | 8b655de simplewallet: report timestamp based expected unlock time on balance (moneromooo-monero)
| * simplewallet: report timestamp based expected unlock time on balancemoneromooo-monero2020-04-221-4/+14
| |
* | Merge pull request #6449luigi11112020-05-011-7/+35
|\ \ | | | | | | | | | 27d551d simplewallet: add sweep_account command (moneromooo-monero)
| * | simplewallet: add sweep_account commandmoneromooo-monero2020-04-141-7/+35
| |/ | | | | | | | | | | | | Expects an account number, then the usual sweep_all options Useful to move monero that was accidentally sent to a subaddress with a very large account index.