summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8467luigi11112022-08-092-5/+31
|\ | | | | | | fac7c43 continue pool pruning even if a tx can't be found (j-berman)
| * continue pool pruning even if a tx can't be foundj-berman2022-07-262-5/+31
| |
* | Merge pull request #8463luigi11112022-08-091-1/+1
|\ \ | | | | | | | | | 265d6ca device: set ledger min app version (selsta)
| * | device: set ledger min app versionselsta2022-07-261-1/+1
| |/
* | Merge pull request #8470luigi11112022-08-094-2/+3
|\ \ | | | | | | | | | 309f6ba build: prepare v0.18.1.0 (selsta)
| * | build: prepare v0.18.1.0selsta2022-07-284-2/+3
| |/
* | Merge pull request #8455luigi11112022-08-082-17/+56
|\ \ | | | | | | | | | 099fc1f Fixed get_block_template_backlog performance (SChernykh)
| * | Fixed get_block_template_backlog performanceSChernykh2022-07-222-17/+56
| |/ | | | | | | | | | | Before the fix, it processed all transactions in the mempool which could be very slow when mempool grows to several MBs in size. I observed `get_block_template_backlog` taking up to 15 seconds of CPU time under high mempool load. After the fix, only transactions that can potentially be mined in the next block will be processed (a bit more than the current block median weight).
* | Merge pull request #8483luigi11112022-08-073-162/+134
|\ \ | | | | | | | | | 6075be9 feat(trezor): add HF15 support, BP+ (Dusan Klinec)
| * | feat(trezor): add HF15 support, BP+Dusan Klinec2022-08-053-162/+134
| |/ | | | | | | | | - BP+ support added for Trezor - old Trezor firmware version support removed, code cleanup
* | Merge pull request #8466luigi11112022-08-078-12/+94
|\ \ | | | | | | | | | 2b83d00 ledger support for hf 15 (BP+, view tags) (j-berman)
| * | ledger support for hf 15 (BP+, view tags)j-berman2022-08-068-12/+94
| |/
* | Merge pull request #8454luigi11112022-08-072-47/+55
|\ \ | | | | | | | | | c0f3c5b Fix use of rtxn without a mdb_txn_safe wrapper (Howard Chu)
| * | Fix use of rtxn without a mdb_txn_safe wrapperHoward Chu2022-07-222-47/+55
| |/
* / Publish submitted txs via zmqj-berman2022-07-214-5/+67
|/
* Merge pull request #8425luigi11112022-07-154-3/+4
|\ | | | | | | fe5d1be build: prepare v0.18.0.0 (selsta)
| * build: prepare v0.18.0.0selsta2022-07-134-3/+4
| |
* | Merge pull request #8414luigi11112022-07-151-2/+4
|\ \ | | | | | | | | | 2ba391f hardforks: set mainnet and stagenet v15/16 fork height (selsta)
| * | hardforks: set mainnet and stagenet v15/16 fork heightselsta2022-07-011-2/+4
| | |
* | | Merge pull request #8433luigi11112022-07-141-9/+14
|\ \ \ | | | | | | | | | | | | db8181a wallet2: force using output distribution for ringct outs (tobtoht)
| * | | wallet2: force using output distribution for ringct outstobtoht2022-06-251-9/+14
| |/ / | | | | | | | | | Co-authored-by: j-berman <justinberman@protonmail.com>
* | | Merge pull request #8432luigi11112022-07-145-13/+144
|\ \ \ | | | | | | | | | | | | edcc094 derive multisig tx secret keys from an entropy source plus the tx inputs' key images (koe)
| * | | derive multisig tx secret keys from an entropy source plus the tx inputs' ↵koe2022-07-135-13/+144
| | | | | | | | | | | | | | | | key images
* | | | Merge pull request #7986luigi11112022-07-141-2/+5
|\ \ \ \ | |/ / / |/| | | | | | | 5770265 wallet2: keep around transaction prefix for confirmed transfers (tobtoht)
| * | | 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-1313-259/+1739
|\ \ \ \ | | | | | | | | | | | | | | | c7b2944 multisig: fix critical vulnerabilities in signing (anon)
| * | | | multisig: fix critical vulnerabilities in signinganon2022-06-3013-259/+1739
| |/ / /
* | | | 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-063-7/+12
|\ \ \ \ | | | | | | | | | | | | | | | 4278a3a cryptonote_basic: catch crypto api errors (moneromooo-monero)
| * | | | cryptonote_basic: catch crypto api errorsmoneromooo-monero2022-06-203-7/+12
| |/ / /
* | | | Merge pull request #8391luigi11112022-07-051-0/+16
|\ \ \ \ | | | | | | | | | | | | | | | 41b1a6b simplewallet: print usage when given no args (hinto.janaiyo)
| * | | | simplewallet: print usage when given no argshinto.janaiyo2022-06-201-0/+16
| |/ / /
* | | | 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-055-10/+17
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | 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-015-10/+17
| |/ / | | | | | | | | | | | | | | | 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 #8384luigi11112022-07-031-36/+14
|\ \ \ | | | | | | | | | | | | 8460fcc Revert 'Merge pull request #7937' (j-berman)
| * | | Revert "Merge pull request #7937"j-berman2022-06-131-36/+14
| |/ / | | | | | | | | | | | | This reverts commit 50410d1f7d04bf60053f2263410c39e81d3ddad1, reversing changes made to d054def63f9b8950fe20b2d8e841f5a9ae09418f.
* | | 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 #7774luigi11112022-07-032-39/+2
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ade464a ITS#9385 fix using MDB_NOSUBDIR with nonexistent file (Kris Zyp) 033a32a Remove check is_directory check on lmdb path (Howard Chu) b096e16 Revert 'db_lmdb: test for mmap support at init time' (Howard Chu) 493577a Silence spurious fallthru warning (Howard Chu) b46a60e Fix rawpart flag collision (Howard Chu) 4e7586c More RAWPART support (Howard Chu) 747f5d3 Preliminary raw partition support (Howard Chu)
| * | | Remove check is_directory check on lmdb pathHoward Chu2022-06-031-8/+2
| | | | | | | | | | | | | | | | The check interferes with raw device/partition support.
| * | | Revert "db_lmdb: test for mmap support at init time"Howard Chu2022-06-032-31/+0
| |/ / | | | | | | | | | | | | | | | This reverts commit bd96536637724413173271e8d5df1777f7879c29. The check interferes with raw device/partition support.
* | | Merge pull request #8340luigi11112022-05-262-13/+26
|\ \ \ | | | | | | | | | | | | | | | | 08080df unit_tests: add more sha256sum test cases (Jeffrey Ryan) a66a52d common: update sha256sum to use OpenSSL 3.0 API (Jeffrey Ryan)