aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
Commit message (Collapse)AuthorAgeFilesLines
...
| * | wallet2: keep around transaction prefix for confirmed transferstobtoht2021-10-011-2/+5
| | |
* | | Merge pull request #8421luigi11112022-07-131-0/+2
|\ \ \ | | | | | | | | | | | | bd1e7c5 wallet2: prevent crash when reading tx w/fewer outputs than expected (j-berman)
| * | | wallet2: prevent crash when reading tx w/fewer outputs than expectedj-berman2022-07-051-0/+2
| | |/ | |/|
* | | Merge pull request #8149luigi11112022-07-132-91/+230
|\ \ \ | | | | | | | | | | | | c7b2944 multisig: fix critical vulnerabilities in signing (anon)
| * | | multisig: fix critical vulnerabilities in signinganon2022-06-302-91/+230
| |/ /
* | | Merge pull request #8408luigi11112022-07-061-37/+0
|\ \ \ | | | | | | | | | | | | 09a597b wallet2: don't use DNS to obtain segregation heights (tobtoht)
| * | | wallet2: don't use DNS to obtain segregation heightstobtoht2022-06-281-37/+0
| |/ /
* | | Merge pull request #8404luigi11112022-07-061-26/+1
|\ \ \ | | | | | | | | | | | | 50ccc7e wallet2: remove obsolete rpc version check (tobtoht)
| * | | wallet2: remove obsolete rpc version checktobtoht2022-06-241-26/+1
| |/ /
* | | Merge pull request #8394luigi11112022-07-061-1/+2
|\ \ \ | | | | | | | | | | | | 4278a3a cryptonote_basic: catch crypto api errors (moneromooo-monero)
| * | | cryptonote_basic: catch crypto api errorsmoneromooo-monero2022-06-201-1/+2
| |/ /
* | | Merge pull request #8388luigi11112022-07-051-7/+11
|\ \ \ | | | | | | | | | | | | 04c0da2 Chunk /gettransactions to avoid hitting restricted RPC limit (tobtoht)
| * | | Chunk /gettransactions to avoid hitting restricted RPC limittobtoht2022-06-271-7/+11
| |/ /
* | | Merge pull request #8371luigi11112022-07-053-7/+10
|\ \ \ | | | | | | | | | | | | | | | | 16f8e04 Remove erraneous commas (Luke Parker) da0715e Improve consistency between on_money_received and on_money_received_unconfirmed (Luke Parker)
| * | | Remove erraneous commasLuke Parker2022-06-011-3/+3
| | | |
| * | | Improve consistency between on_money_received and on_money_received_unconfirmedLuke Parker2022-06-013-7/+10
| |/ / | | | | | | | | | | | | | | | unconfirmed solely uses a - b, and received now accepts b so it can provide more detailed logs on what occurred (printing a - b, yet with a and b).
* | | Merge pull request #8356luigi11112022-07-033-0/+44
|\ \ \ | |/ / |/| | | | | de2f0d0 wallet_api: add scanTransactions function (selsta)
| * | wallet_api: add scanTransactions functionselsta2022-05-263-0/+44
| | |
* | | Merge pull request #8331luigi11112022-05-261-9/+5
|\ \ \ | | | | | | | | | | | | fde7c96 wallet2: fix spurious reorg detection with untrusted nodes (moneromooo-monero)
| * | | wallet2: fix spurious reorg detection with untrusted nodesmoneromooo-monero2022-05-151-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When forced to deal with an untrusted node, a wallet will quantize its current height to disguise the real height to the adversary, to try and minimize the daemon's ability to distinguish returning wallets. Daemons will thus return more blocks than the wallet needs, starting from earlier in the chain. These extra blocks will be disregarded by the wallet, which had already scanned them. However, for the purposes of reorg size detection, the wallet assumes all blocks the daemon sends are different, which is only correct if the wallet hasn't been coy, which is only the case for trusted daemons (which you should use). This causes an issue when the size of this "fake reorg" is above the sanity check threshold at which the wallet refuses a reorg. To fix this, the reorg size check is moved later on, when the reorg is about to actually happen, after the wallet has checked which blocks are actually different from the ones it expects.
* | | | Merge pull request #8328luigi11112022-05-265-1/+48
|\ \ \ \ | |_|/ / |/| | | | | | | 2979474 disable multisig by default (moneromooo-monero)
| * | | disable multisig by defaultmoneromooo-monero2022-05-175-1/+48
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | There are vulnerabilities in multisig protocol if the parties do not trust each other, and while there is a patch for it, it has not been throroughly reviewed yet, so it is felt safer to disable multisig by default for now. If all parties in a multisig setup trust each other, then it is safe to enable multisig.
* | | Merge pull request #8308luigi11112022-05-161-6/+1
|\ \ \ | | | | | | | | | | | | f63f7dc wallet2: fix a couple unused variable warnings (selsta)
| * | | wallet2: fix a couple unused variable warningsselsta2022-05-021-6/+1
| | | |
* | | | wallet2: speedup large tx construction: reserve vector memorymoneromooo-monero2022-05-131-1/+7
| | | | | | | | | | | | | | | | 2.8 seconds -> 2.6 seconds on a test case
* | | | wallet2: speedup large tx construction: batch ringdb lookupsCrypto City2022-05-134-5/+58
| | | | | | | | | | | | | | | | 3.3 seconds -> 2.8 seconds on a test case
* | | | wallet2: speedup large tx construction: batch ringdb updatesCrypto City2022-05-134-5/+30
| | | | | | | | | | | | | | | | 5.2 seconds -> 4.1 seconds on a test case
* | | | wallet2: speedup large tx construction: cache public key validitymoneromooo-monero2022-05-132-28/+36
| |/ / |/| | | | | | | | 5.9 second -> 5.2 seconds on a test case
* | | Merge pull request #8277luigi11112022-05-101-3/+1
|\ \ \ | | | | | | | | | | | | baee2c0 Preserve commitment format inside transactions (kayabaNerve)
| * | | Preserve commitment format inside transactionsLuke Parker2022-04-211-3/+1
| | | |
* | | | Merge pull request #8220luigi11112022-05-102-4/+8
|\ \ \ \ | |_|/ / |/| | | | | | | 0d6ecb1 multisig: add post-kex verification round to check that all participants have completed the multisig address (koe)
| * | | multisig: add post-kex verification round to check that all participants ↵koe2022-04-292-4/+8
| | | | | | | | | | | | | | | | have completed the multisig address
* | | | Merge pull request #8249luigi11112022-04-251-1/+0
|\ \ \ \ | | | | | | | | | | | | | | | a14fdf8 Remove /include (Jeffrey)
| * | | | Remove /includeJeffrey2022-04-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | * `IWallet.h` hasn't been touched since 2014, and has been replaced by `src/wallet/api/wallet2_api.h` * `INode.h` is in a similar situation with `src/p2p/net_node.h`
* | | | | Merge pull request #8178luigi11112022-04-251-0/+4
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | 5d388eb Bump ring size to 16 for v15 & remove set default in wallet cli (j-berman)
| * | | | Bump ring size to 16 for v15 & remove set default in wallet clij-berman2022-04-181-0/+4
| | | | |
* | | | | Merge pull request #8254luigi11112022-04-191-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 9df7179 wallet2: use BP+ for cold signing (moneromooo-monero)
| * | | | | wallet2: use BP+ for cold signingmoneromooo-monero2022-04-101-1/+1
| | |/ / / | |/| | | | | | | | | | | | | reported by ukoehb
* | | | | Add view tags to outputs to reduce wallet scanning timej-berman2022-04-183-136/+220
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements view tags as proposed by @UkoeHB in MRL issue https://github.com/monero-project/research-lab/issues/73 At tx construction, the sender adds a 1-byte view tag to each output. The view tag is derived from the sender-receiver shared secret. When scanning for outputs, the receiver can check the view tag for a match, in order to reduce scanning time. When the view tag does not match, the wallet avoids the more expensive EC operations when deriving the output public key using the shared secret.
* | | | Fee changes from ArticMinemoneromooo-monero2022-04-105-36/+80
|/ / / | | | | | | | | | | | | | | | https://github.com/ArticMine/Monero-Documents/blob/master/MoneroScaling2021-02.pdf with a change to use 1.7 instead of 2.0 for the max long term increase rate
* | | Merge pull request #8215luigi11112022-04-062-3/+13
|\ \ \ | | | | | | | | | | | | d1f1947 wallet_rpc_server: support regex for get_accounts tag (reemuru)
| * | | wallet_rpc_server: support regex for get_accounts tagreemuru2022-03-132-3/+13
| |/ / | | | | | | | | | | | | | | | | | | | | | This commit adds a 'regexp' boolean field to the get_accounts request. The flag is set to false by default and maintains backwards compatibility. When set to true the user can search tags by regular expression filters. An additional error message was added for failed regular expression searches. Bump minor version to 25.
* | | Merge pull request #8213luigi11112022-04-061-6/+0
|\ \ \ | | | | | | | | | | | | 7dcfccb wallet_rpc_server: fix make_integrated_address with no payment id (moneromooo-monero)
| * | | wallet_rpc_server: fix make_integrated_address with no payment idmoneromooo-monero2022-03-111-6/+0
| |/ /
* | | Merge pull request #8197luigi11112022-04-0642-42/+48
|\ \ \ | | | | | | | | | | | | da9aa1f Copyright: Update to 2022 (mj-xmr)
| * | | Copyright: Update to 2022mj-xmr2022-03-0442-42/+48
| |/ /
* | | Merge pull request #8195luigi11112022-04-061-4/+4
|\ \ \ | | | | | | | | | | | | 3c82958 wallet2: update stagenet rollback blocks (selsta)
| * | | wallet2: update stagenet rollback blocksselsta2022-03-011-4/+4
| | | |
* | | | Merge pull request #8179luigi11112022-04-062-10/+167
|\ \ \ \ | | | | | | | | | | | | | | | ae0a840 wallet2: decrease the amount of data exchanged for output export (moneromooo-monero)
| * | | | wallet2: decrease the amount of data exchanged for output exportmoneromooo-monero2022-03-292-10/+167
| | |/ / | |/| |