summaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5215Riccardo Spagni2019-03-041-1/+1
|\ | | | | | | fcb524be wallet2: fix incorrect patch for determining fork rules (moneromooo-monero)
| * wallet2: fix incorrect patch for determining fork rulesmoneromooo-monero2019-03-031-1/+1
| | | | | | | | | | | | Half of the patch was correct, but half was introducing another bug, where a wallet asking for a fork that the daemon does not know about yet would decide to use those rules.
* | wallet2: fix mishandling rct outputs in coinbase txmoneromooo-monero2019-03-031-6/+12
|/ | | | Reported by cutcoin
* wallet: fix payment ID decryption for construction dataDusan Klinec2019-02-201-7/+6
|
* ringct: encode 8 byte amount, saving 24 bytes per outputmoneromooo-monero2019-02-121-2/+2
| | | | Found by knaccc
* add a bulletproof version, new bulletproof type, and rct configmoneromooo-monero2019-02-121-19/+28
| | | | This makes it easier to modify the bulletproof format
* core, wallet: remember original text version of destination addressmoneromooo-monero2019-02-121-7/+11
|
* wallet2: fix ring reuse breaking when using histogrammoneromooo-monero2019-02-121-0/+3
|
* notify: handle arbitrary tagsmoneromooo-monero2019-02-121-1/+1
|
* wallet2: extend fake out picks away from the gamma pickmoneromooo-monero2018-10-231-2/+23
| | | | in order to unbias selection from blocks with few txes
* Rename "blackball" for claritymoneromooo-monero2018-10-181-1/+1
| | | | Apparently some people seem to think it's a censorship list...
* SOFTWARE is the default wallet devicem2049r2018-10-121-0/+1
|
* Merge pull request #4540Riccardo Spagni2018-10-091-4/+1
| | | | 8833aec0 wallet2: fix cold signing using non padded bulletproofs (moneromooo-monero)
* Merge pull request #4036Riccardo Spagni2018-10-071-98/+304
| | | | | 9acf42d3 Multisig M/N functionality core tests added (naughtyfox) 9f3963e8 Arbitrary M/N multisig schemes: * support in wallet2 * support in monero-wallet-cli * support in monero-wallet-rpc * support in wallet api * support in monero-gen-trusted-multisig * unit tests for multisig wallets creation (naughtyfox)
* Merge pull request #4505Riccardo Spagni2018-10-071-2/+2
| | | | 977df631 Fix some calls to the translation function (Guillaume LE VAILLANT)
* Merge pull request #4495Riccardo Spagni2018-10-061-3/+3
| | | | 34a85e0c wallet2: disable height based segregation (moneromooo-monero)
* Merge pull request #4490Riccardo Spagni2018-10-021-1/+1
| | | | bccd88dd wallet2: clear found out for every tx key (doy-lee)
* Merge pull request #4482Riccardo Spagni2018-10-021-4/+9
| | | | 25e5890d wallet: fix --generate-from-json using wrong password (moneromooo-monero)
* Merge pull request #4333Riccardo Spagni2018-09-291-0/+24
|\ | | | | | | 73403004 add --block-notify to monerod and --tx-notify to monero-wallet-{cli,rpc} (moneromooo-monero)
| * add --block-notify to monerod and --tx-notify to monero-wallet-{cli,rpc}moneromooo-monero2018-09-291-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Those take a command line of the form "A [B]", with A being the name (and optional path, if not in the caller's CWD, but fully qualified path is recommended, avoids possible security issues) to a program, and optional arguments. Any occurence of the two character string "%s" will be replaced by the hash of the block or transaction which triggered the notification. Tokenization is barebones. If you want things like pipes, calls to paths with spaces, etc, then use a script (though exec time will suffer). block-notify is called when a new block is added onto the chain. tx-notify is called when a new transaction happens with the wallet as source and/or destination. It is the notification program's responsibility to determine what to do in those cases. Note that this is asynchronous, so it is very possible that: - the notification programs will be run out of order - several events happen before the notification for the first one A Windows port would be nice if someone wants to make one.
* | Merge pull request #4461Riccardo Spagni2018-09-291-1/+5
|\ \ | | | | | | | | | 7dd11711 wallet2: fix transfers between subaddresses hitting the sanity check (moneromooo-monero)
| * | wallet2: fix transfers between subaddresses hitting the sanity checkmoneromooo-monero2018-09-281-1/+5
| |/ | | | | | | Transfers between subaddresses are accounted for differently
* | Merge pull request #4456Riccardo Spagni2018-09-291-2/+9
|\ \ | | | | | | | | | 06d05c21 device: set device name correctly if key_on_device is set (Dusan Klinec)
| * | device: set device name correctly if key_on_device is setDusan Klinec2018-09-271-2/+9
| |/
* | Merge pull request #4406Riccardo Spagni2018-09-291-3/+27
|\ \ | |/ |/| | | 7964d4f8 wallet2: handle corner case in picking fake outputs (moneromooo-monero)
| * wallet2: handle corner case in picking fake outputsmoneromooo-monero2018-09-221-3/+27
| | | | | | | | | | | | If we originally think we have enough outputs on the blockchain to pick random fake outputs, we might end up with not enough of them if enough are actually blackballed.
* | wallet2: fix duplicate output making it to the RPCmoneromooo-monero2018-09-251-7/+32
| |
* | Merge pull request #4401Riccardo Spagni2018-09-211-9/+31
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 66901901 README: harmonize command formatting inside README.md (Andrea) 8cd98408 disable AES on s390x architecture (Tuan M. Hoang) 4ed30bab wallet: implement coin splitting for sweep_* 'outputs' option (whythat) 24f52396 wallet: add 'outputs' option for sweep_* commands (whythat) 52e19d69 README: Compile boost with cxxflags=-fPIC cflags=-fPIC (Italocoin Project) 0c77523d README: fill in libsodium package name for Arch (phloatingman)
| * | wallet: implement coin splitting for sweep_* 'outputs' optionwhythat2018-09-181-3/+25
| | | | | | | | | | | | | | | | | | | | | | | | Implemented strategy splits total amount into N equal parts, where N is a specified number of outputs. If N > 1, dummy change output is NOT created. rebased by moneromooo
| * | wallet: add 'outputs' option for sweep_* commandswhythat2018-09-181-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | 'outputs' option allows to specify the number of separate outputs of smaller denomination that will be created by sweep operation. rebased by moneromooo
* | | query backing devicem2049r2018-09-191-12/+68
| |/ |/|
* | Merge pull request #4360Riccardo Spagni2018-09-181-1/+6
|\ \ | | | | | | | | | 7a76354c wallet2: import_multisig forward refresh exception (naughtyfox)
| * | wallet2: import_multisig forward refresh exceptionnaughtyfox2018-09-101-1/+6
| | |
* | | Merge pull request #4302Riccardo Spagni2018-09-181-6/+5
|\ \ \ | | | | | | | | | | | | ba8dd347 api/wallet: properly disable key encryption (stoffu)
| * | | api/wallet: properly disable key encryptionstoffu2018-09-171-6/+5
| | |/ | |/|
* / | hw_device: support for multiple devices added [for review]Dusan Klinec2018-09-141-2/+49
|/ / | | | | | | | | | | | | - device name is a new wallet property - full device name is now a bit more structured so we can address particular device vendor + device path. Example: 'Ledger', 'Trezor:udp', 'Trezor:udp:127.0.0.1:21324', 'Trezor:bridge:usb01'. The part before ':' identifies HW device implementation, the optional part after ':' is device path to look for. - new --hw-device parameter added to the wallet, can name the hardware device - device reconnect added
* | Merge pull request #4324Riccardo Spagni2018-09-141-29/+32
|\ \ | | | | | | | | | 44259e56 wallet: ask-password can now ask without encrypting the secret spend key (moneromooo-monero)
| * | wallet: ask-password can now ask without encrypting the secret spend keymoneromooo-monero2018-09-141-29/+32
| | |
* | | Merge pull request #4347Riccardo Spagni2018-09-141-1/+1
|\ \ \ | | | | | | | | | | | | df0e7c2f wallet2: fix secondary partially signed multisig txes (moneromooo-monero)
| * | | wallet2: fix secondary partially signed multisig txesmoneromooo-monero2018-09-081-1/+1
| | |/ | |/|
* | | Merge pull request #4336Riccardo Spagni2018-09-141-0/+1
|\ \ \ | | | | | | | | | | | | 5f8f5631 wallet2.get_reserve_proof: throw when specified amount is zero (stoffu)
| * | | wallet2.get_reserve_proof: throw when specified amount is zerostoffu2018-09-041-0/+1
| | | |
* | | | Merge pull request #4332Riccardo Spagni2018-09-141-111/+40
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 20171746 wallet2: factor the creation of a new wallet keys file (moneromooo-monero) be6acfd5 wallet2: factor new blockchain setup (moneromooo-monero)
| * | | | wallet2: factor the creation of a new wallet keys filemoneromooo-monero2018-09-031-75/+24
| | | | |
| * | | | wallet2: factor new blockchain setupmoneromooo-monero2018-09-031-36/+16
| |/ / /
* | | | Merge pull request #4331Riccardo Spagni2018-09-141-1/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | 88fbc4a5 wallet2: fill in v2 height for stagenet (moneromooo-monero)
| * | | wallet2: fill in v2 height for stagenetmoneromooo-monero2018-09-031-1/+1
| |/ /
* | | Merge pull request #4253Riccardo Spagni2018-09-141-174/+1
|\ \ \ | | | | | | | | | | | | be001326 remove obsolete daemon selection of fake outs and old tx construction (moneromooo-monero)
| * | | remove obsolete daemon selection of fake outs and old tx constructionmoneromooo-monero2018-09-141-174/+1
| | | |
* | | | Merge pull request #4260Riccardo Spagni2018-09-141-8/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a54dbaee blockchain_blackball: add --force-chain-reaction-pass flag (moneromooo-monero) 44439c32 record blackballs as amount/offset, and add export ability (moneromooo-monero) 4bce935b blockchain_blackball: more optimizations (moneromooo-monero) b66ba783 blockchain_blackball: do not process duplicate blockchains parts (moneromooo-monero) 639a3c01 blockchain_blackball: make it clear secondary passes are not incremental (moneromooo-monero) eb8a51be blockchain_blackball: detect spent outputs by partial ring reuse (moneromooo-monero) d6d276c6 blockchain_blackball: fix chain reaction phase in incremental mode (moneromooo-monero) 2b2a681b blockchain_blackball: avoid false positives for different amounts (moneromooo-monero) 80e4fef3 blockchain_blackball: set transaction looping txn to read only (moneromooo-monero) 4801d6b5 blockchain_blackball: add stats (moneromooo-monero) 846190fd blockchain_blackball: support pre-v2 databases (moneromooo-monero) daa6cc7d blockchain_blackball: use LMDB for the cache (moneromooo-monero) 50cb370d ringdb: allow blackballing many outputs at once (moneromooo-monero)