aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
Commit message (Collapse)AuthorAgeFilesLines
...
| * | wallet-rpc: get transfers for all accounts and subaddressesJethro Grassie2019-02-172-5/+15
| |/
* | Merge pull request #5141Riccardo Spagni2019-03-043-1/+89
|\ \ | | | | | | | | | 5c81a9f1 wallet_rpc_server: add a validate_address RPC (moneromooo-monero)
| * | wallet_rpc_server: add a validate_address RPCmoneromooo-monero2019-02-143-1/+89
| |/
* | Merge pull request #5131Riccardo Spagni2019-03-041-1/+1
|\ \ | | | | | | | | | d2c95ab9 Don't decrypt keys in view only wallets in wallet_keys_unlocker (Doyle)
| * | Don't decrypt keys in view only wallets in wallet_keys_unlockerDoyle2019-02-131-1/+1
| |/
* | Merge pull request #5084Riccardo Spagni2019-03-041-0/+5
|\ \ | | | | | | | | | 9d58749b wallet2: fix hashchain going out of sync on refresh error (moneromooo-monero)
| * | wallet2: fix hashchain going out of sync on refresh errormoneromooo-monero2019-01-191-0/+5
| | |
* | | Merge pull request #4054Riccardo Spagni2019-03-044-12/+80
|\ \ \ | | | | | | | | | | | | 24569454 epee: add SSL support (moneromooo-monero)
| * | | epee: add SSL supportmoneromooo-monero2019-02-024-12/+80
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RPC connections now have optional tranparent SSL. An optional private key and certificate file can be passed, using the --{rpc,daemon}-ssl-private-key and --{rpc,daemon}-ssl-certificate options. Those have as argument a path to a PEM format private private key and certificate, respectively. If not given, a temporary self signed certificate will be used. SSL can be enabled or disabled using --{rpc}-ssl, which accepts autodetect (default), disabled or enabled. Access can be restricted to particular certificates using the --rpc-ssl-allowed-certificates, which takes a list of paths to PEM encoded certificates. This can allow a wallet to connect to only the daemon they think they're connected to, by forcing SSL and listing the paths to the known good certificates. To generate long term certificates: openssl genrsa -out /tmp/KEY 4096 openssl req -new -key /tmp/KEY -out /tmp/REQ openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT /tmp/KEY is the private key, and /tmp/CERT is the certificate, both in PEM format. /tmp/REQ can be removed. Adjust the last command to set expiration date, etc, as needed. It doesn't make a whole lot of sense for monero anyway, since most servers will run with one time temporary self signed certificates anyway. SSL support is transparent, so all communication is done on the existing ports, with SSL autodetection. This means you can start using an SSL daemon now, but you should not enforce SSL yet or nothing will talk to you.
* | | Merge pull request #5217Riccardo Spagni2019-03-042-7/+13
|\ \ \ | | | | | | | | | | | | fa2fbc39 wallet2: fix mishandling rct outputs in coinbase tx (moneromooo-monero)
| * | | wallet2: fix mishandling rct outputs in coinbase txmoneromooo-monero2019-03-032-7/+13
| |/ / | | | | | | | | | Reported by cutcoin
* | | Print the reason why a notification spec failed to parsemoneromooo-monero2019-03-041-1/+1
| | |
* | | wallet_rpc_server: remove detached short payment ids supportmoneromooo-monero2019-02-021-5/+1
|/ /
* | Merge pull request #5062Riccardo Spagni2019-01-282-153/+154
|\ \ | | | | | | | | | acfff8d0 rpc: fix internal daemon calls in restricted rpc getting partial data (moneromooo-monero)
| * | rpc: fix internal daemon calls in restricted rpc getting partial datamoneromooo-monero2019-01-282-153/+154
| | |
* | | Merge pull request #5053Riccardo Spagni2019-01-281-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 23813c71 blockchain: add --reorg-notify (moneromooo-monero) f6db59b0 notify: handle arbitrary tags (moneromooo-monero) ff959216 notify: warn if the spec contains one of '"\ (moneromooo-monero) 13852678 common: set MONERO_DEFAULT_LOG_CATEGORY for notify and spawn (moneromooo-monero)
| * | | notify: handle arbitrary tagsmoneromooo-monero2019-01-281-1/+1
| |/ /
* | | Merge pull request #5074Riccardo Spagni2019-01-281-1/+1
|\ \ \ | | | | | | | | | | | | b8c5f550 wallet api: don't truncate address in subaddress_account (selsta)
| * | | wallet api: don't truncate address in subaddress_accountselsta2019-01-151-1/+1
| | | | | | | | | | | | | | | | Same behaviour as subaddress.cpp now.
* | | | Merge pull request #5069Riccardo Spagni2019-01-281-3/+10
|\ \ \ \ | |_|/ / |/| | | | | | | 2112060d wallet2: fix duplicate tx notifications for pool txes (moneromooo-monero)
| * | | wallet2: fix duplicate tx notifications for pool txesmoneromooo-monero2019-01-131-3/+10
| |/ /
* | | Merge pull request #5068Riccardo Spagni2019-01-281-1/+1
|\ \ \ | | | | | | | | | | | | 96e35506 wallet2: fix incorrect patch for determining fork rules (moneromooo-monero)
| * | | wallet2: fix incorrect patch for determining fork rulesmoneromooo-monero2019-01-131-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.
* | | Merge pull request #5056Riccardo Spagni2019-01-282-9/+9
|\ \ \ | | | | | | | | | | | | 8258a9e7 wallet: do not check txpool in background mode (moneromooo-monero)
| * | | wallet: do not check txpool in background modemoneromooo-monero2019-01-092-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids the constant message about needed to run refresh to enter a password. Also mention the txpool when asking for the password if the reason is a pool tx.
* | | | Merge pull request #5052Riccardo Spagni2019-01-282-21/+30
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b6534c40 ringct: remove unused senderPk from ecdhTuple (moneromooo-monero) 7d375981 ringct: the commitment mask is now deterministic (moneromooo-monero) 99d946e6 ringct: encode 8 byte amount, saving 24 bytes per output (moneromooo-monero) cdc3ccec ringct: save 3 bytes on bulletproof size (moneromooo-monero) f931e16c add a bulletproof version, new bulletproof type, and rct config (moneromooo-monero)
| * | | | ringct: encode 8 byte amount, saving 24 bytes per outputmoneromooo-monero2019-01-221-2/+2
| | | | | | | | | | | | | | | | | | | | Found by knaccc
| * | | | add a bulletproof version, new bulletproof type, and rct configmoneromooo-monero2019-01-222-19/+28
| | |_|/ | |/| | | | | | | | | | This makes it easier to modify the bulletproof format
* / | | Pruningmoneromooo-monero2019-01-221-76/+113
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The blockchain prunes seven eighths of prunable tx data. This saves about two thirds of the blockchain size, while keeping the node useful as a sync source for an eighth of the blockchain. No other data is currently pruned. There are three ways to prune a blockchain: - run monerod with --prune-blockchain - run "prune_blockchain" in the monerod console - run the monero-blockchain-prune utility The first two will prune in place. Due to how LMDB works, this will not reduce the blockchain size on disk. Instead, it will mark parts of the file as free, so that future data will use that free space, causing the file to not grow until free space grows scarce. The third way will create a second database, a pruned copy of the original one. Since this is a new file, this one will be smaller than the original one. Once the database is pruned, it will stay pruned as it syncs. That is, there is no need to use --prune-blockchain again, etc.
* | | Merge pull request #5008Riccardo Spagni2019-01-183-7/+15
|\ \ \ | | | | | | | | | | | | | | | | | | | | c6d38718 core: include a dummy encrypted payment id when no payment is used (moneromooo-monero) b7441c4a core, wallet: remember original text version of destination address (moneromooo-monero) a9b1c04a crptonote_core: do not error out sending unparsable extra field (moneromooo-monero)
| * | | core, wallet: remember original text version of destination addressmoneromooo-monero2019-01-183-7/+15
| | | |
* | | | Merge pull request #5049Riccardo Spagni2019-01-181-0/+1
|\ \ \ \ | |/ / / |/| | | | | | | 0a29660f message_store: init me field (moneromooo-monero)
| * | | message_store: init me fieldmoneromooo-monero2019-01-071-0/+1
| |/ / | | | | | | | | | Coverity 190651
* | | wallet2: remember which output keys map to which key imagesmoneromooo-monero2019-01-162-16/+101
| | | | | | | | | | | | | | | This allows filling in transfer_details when a cold signed tx gets seen in a block next
* | | Merge pull request #5034Riccardo Spagni2019-01-164-0/+15
|\ \ \ | | | | | | | | | | | | 13785ec9 wallet api/device: set estimated restore height if none is provided (selsta)
| * | | wallet api/device: set estimated restore height if none is providedselsta2019-01-024-0/+15
| | | |
* | | | Merge pull request #5027Riccardo Spagni2019-01-162-26/+76
|\ \ \ \ | | | | | | | | | | | | | | | 9092fc4b wallet: do not display daemon controlled text if untrusted (moneromooo-monero)
| * | | | wallet: do not display daemon controlled text if untrustedmoneromooo-monero2018-12-302-26/+76
| | | | |
* | | | | Merge pull request #5012Riccardo Spagni2019-01-164-6/+12
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | d7354c78 wallet_rpc_server: add all field to export_key_images (moneromooo-monero)
| * | | | | wallet_rpc_server: add all field to export_key_imagesmoneromooo-monero2018-12-244-6/+12
| |/ / / / | | | | | | | | | | | | | | | | | | | | To use if you want all key images, not just the ones for recently imported outputs
* | | | | Merge pull request #5004Riccardo Spagni2019-01-161-0/+17
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | de9dcdd1 wallet2: finalize_multisig now rejects non N-1/N multisig wallets (moneromooo-monero)
| * | | | | wallet2: finalize_multisig now rejects non N-1/N multisig walletsmoneromooo-monero2018-12-211-0/+17
| | | | | |
* | | | | | Merge pull request #4995Riccardo Spagni2019-01-161-3/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 99765b21 Remove unused hash in export_key_images (doy-lee)
| * | | | | | Remove unused hash in export_key_imagesdoy-lee2018-12-191-3/+0
| |/ / / / /
* | | | | | Merge pull request #4987Riccardo Spagni2019-01-161-4/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 841a6acd wallet2: fix accessing unwound stack on exception (moneromooo-monero)
| * | | | | | wallet2: fix accessing unwound stack on exceptionmoneromooo-monero2018-12-161-4/+12
| |/ / / / /
* | | | | | Merge pull request #4985Riccardo Spagni2019-01-161-6/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 808a1f1e wallet2: cut down on the number of useless derivation threads (moneromooo-monero)
| * | | | | | wallet2: cut down on the number of useless derivation threadsmoneromooo-monero2018-12-161-6/+9
| |/ / / / /
* | | | | | Merge pull request #4980Riccardo Spagni2019-01-161-4/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 219548f2 Sync hashchain bug fixed (naughtyfox)
| * | | | | | Sync hashchain bug fixednaughtyfox2018-12-141-4/+3
| |/ / / / /