summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #9864v0.18.4.0tobtoht2025-03-263-2/+2
|\ | | | | | | 97e1a49dd checkpoints: update to a recent block height (selsta)
| * checkpoints: update to a recent block heightselsta2025-03-253-2/+2
| |
* | Correct Max / Min Block Waiting Periodstzadiko2025-03-251-11/+10
| |
* | Fix expected hash checkLee *!* Clagett2025-03-241-1/+1
| |
* | Merge pull request #9854tobtoht2025-03-241-4/+0
|\ \ | | | | | | | | | c7f01e57f Blockchain: remove skip for pruned txs in `check_tx_inputs()` (jeffro256)
| * | Blockchain: remove skip for pruned txs in `check_tx_inputs()`jeffro2562025-03-191-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | I can't see how this would trigger in the current codebase, so it's not a *current* safety issue, but I can very well see it becoming on in the future if downstream code doesn't handle the passing of pruned transactions correctly. I think the safe/good choice would be to remove this skip now that all transactions that pass into the mempool are supposed to be unpruned. And for all in-block txs, `check_tx_inputs()` isn't called for checkpointed blocks, and we sync pruned blocks only if syncing checkpointed blocks.
* | | Merge pull request #9853tobtoht2025-03-242-8/+32
|\ \ \ | | | | | | | | | | | | ce1c864b4 cryptonote_protocol: fix handling of pruned blocks during sync (jeffro256)
| * | | cryptonote_protocol: fix handling of pruned blocks during syncjeffro2562025-03-192-8/+32
| |/ /
* | | Merge pull request #9836tobtoht2025-03-241-9/+0
|\ \ \ | |_|/ |/| | | | | 9468a5e54 cryptonote_basic: remove unused struct (tobtoht)
| * | cryptonote_basic: remove unused structtobtoht2025-03-141-9/+0
| |/
* / trezor: fix protobuf 30 compatibilitytobtoht2025-03-182-0/+14
|/
* Merge pull request #9740tobtoht2025-03-1022-1144/+1053
|\ | | | | | | 008ba966d blockchain sync: reduce disk writes from 2 to 1 per tx (jeffro256)
| * blockchain sync: reduce disk writes from 2 to 1 per txjeffro2562025-03-1022-1144/+1053
| |
* | Merge pull request #9805tobtoht2025-02-171-2/+3
|\ \ | | | | | | | | | 33e33fbca BlockchainLMDB: fix data.mdb nuking on Windows (jeffro256)
| * | BlockchainLMDB: fix data.mdb nuking on Windowsjeffro2562025-02-171-2/+3
| | |
* | | Merge pull request #9803tobtoht2025-02-171-0/+1
|\ \ \ | |/ / |/| | | | | 6ccd3200b common: add missing iomanip include (tobtoht)
| * | common: add missing iomanip includetobtoht2025-02-171-0/+1
| | |
* | | add wallet rpc call to get default fee prioritywoodser2025-02-153-1/+46
| | |
* | | Fix build with boost ASIO 0.87. Support boost 1.66+Lee *!* Clagett2025-02-1415-64/+70
| | |
* | | Set response limits on http server connectionsLee *!* Clagett2025-02-145-4/+81
| | |
* | | epee: update 'http_server_handlers_map2.h' macros to use fully qualified namesJeffrey Ryan2025-02-133-6/+2
|/ / | | | | | | quick patch which fixes the issue where if you use some macros from `http_server_handlers_map2.h` you have to be in the `epee` namespace or it doesn't compile. Now can remove `using namespace epee;` from header file `core_rpc_server.h`, which caused a couple of name qualifying mistakes
* | Merge pull request #9722tobtoht2025-02-134-2/+3
|\ \ | | | | | | | | | 3fef29608 build: prepare v0.18.4.0 (selsta)
| * | build: prepare v0.18.4.0selsta2025-02-134-2/+3
| |/
* | Merge pull request #8617tobtoht2025-02-1315-94/+1849
|\ \ | | | | | | | | | e44e8b164 wallet: background sync with just the view key (j-berman)
| * | wallet: background sync with just the view keyj-berman2024-05-2415-95/+1850
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - When background syncing, the wallet wipes the spend key from memory and processes all new transactions. The wallet saves all receives, spends, and "plausible" spends of receives the wallet does not know key images for. - When background sync disabled, the wallet processes all background synced txs and then clears the background sync cache. - Adding "plausible" spends to the background sync cache ensures that the wallet does not need to query the daemon to see if any received outputs were spent while background sync was enabled. This would harm privacy especially for users of 3rd party daemons. - To enable the feature in the CLI wallet, the user can set background-sync to reuse-wallet-password or custom-background-password and the wallet automatically syncs in the background when the wallet locks, then processes all background synced txs when the wallet is unlocked. - The custom-background-password option enables the user to open a distinct background wallet that only has a view key saved and can be opened/closed/synced separately from the main wallet. When the main wallet opens, it processes the background wallet's cache. - To enable the feature in the RPC wallet, there is a new `/setup_background_sync` endpoint. - HW, multsig and view-only wallets cannot background sync.
* | | Merge pull request #9718tobtoht2025-02-131-1/+1
|\ \ \ | | | | | | | | | | | | f00ce66d4 wallet: fix signed_tx_set RangeProofType serialization (jeffro256)
| * | | wallet: fix signed_tx_set RangeProofType serializationjeffro2562025-01-181-1/+1
| | | |
* | | | Merge pull request #9759tobtoht2025-02-136-35/+131
|\ \ \ \ | | | | | | | | | | | | | | | ed70c1622 Some cleanup in span/connection_context + few more checks (Lee *!* Clagett)
| * | | | Some cleanup in span/connection_context + few more checksLee *!* Clagett2025-02-036-35/+131
| | |_|/ | |/| |
* | | | Merge pull request #9771tobtoht2025-02-131-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | 66c2fe12c src: bump network speed 4x (nahuhh)
| * | | | src: bump network speed 4xnahuhh2025-02-051-2/+2
| |/ / /
* / / / p2p/net_node.inl : update seed nodeplowsof2025-02-091-3/+3
|/ / /
* | | Merge pull request #9692tobtoht2025-01-221-2/+7
|\ \ \ | | | | | | | | | | | | 27858049d crypto: make CRYPTO_DEFINE_HASH_FUNCTIONS adhere strict aliasing (jeffro256)
| * | | crypto: make CRYPTO_DEFINE_HASH_FUNCTIONS adhere strict aliasingjeffro2562025-01-091-2/+7
| | | | | | | | | | | | | | | | This code could've caused issues if the pointer to the `public_key`, `key_image`, `hash`, etc wasn't aligned on an 8-byte boundary.
* | | | Merge pull request #9689tobtoht2025-01-221-72/+5
|\ \ \ \ | | | | | | | | | | | | | | | 4d2aad837 Revert "blockchain: detect and log bad difficulty calculations" (selsta)
| * | | | Revert "blockchain: detect and log bad difficulty calculations"selsta2025-01-141-72/+5
| | | | | | | | | | | | | | | | | | | | This reverts commit 5741b4d74de542f6f75dddad8125f4c4a5ad9143.
* | | | | Merge pull request #9460tobtoht2025-01-222-18/+30
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 0cd74568d Cleanup TCP throttling code (performance) + move connection checks (Lee *!* Clagett)
| * | | | | Cleanup TCP throttling code (performance) + move connection checksLee *!* Clagett2024-12-192-18/+30
| | | | | |
* | | | | | Merge pull request #9705tobtoht2025-01-182-8/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 36c5987 Fix get_database_size on Windows (iamamyth)
| * | | | | | Fix get_database_size on Windowsiamamyth2025-01-142-8/+8
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace all calls to epee::file_io::get_file_size with boost::filesystem::file_size in order to avoid lossy conversions from paths to strings, which tend to break filename resolution. This commit fixes a bug on Windows where the get_info RPC call reported a zero database size because BlockchainLMBD::get_database_size returned zero.
* | | | | | Merge pull request #9703tobtoht2025-01-181-0/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 936046f validate ip parameter in set_bans rpc call (eversinc33)
| * | | | | | validate ip parameter in set_bans rpc calleversinc332025-01-141-0/+6
| |/ / / / /
* / / / / / check for windows NTFS compression on database fileseversinc332025-01-141-0/+64
|/ / / / /
* | | | | Merge pull request #9657tobtoht2025-01-141-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 5f39d17 common/password: flush confirm prompt before user input (jeffro256)
| * | | | | common/password: flush confirm prompt before user inputjeffro2562024-12-261-1/+1
| | |_|/ / | |/| | | | | | | | | | | | | Co-authored-by: Mike <mpech@tuta.io>
* | | | | Merge pull request #9633tobtoht2025-01-141-11/+14
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | e99ef92 Fix --anonymous-inbound data leak (Lee *!* Clagett)
| * | | | | Fix --anonymous-inbound data leakLee *!* Clagett2025-01-031-11/+14
| |/ / / /
* | | | | Merge pull request #9622tobtoht2025-01-141-11/+2
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | 41c4bc4 Blockchain: get height of RingCT fork programmatically (jeffro256)
| * | | | Blockchain: get height of RingCT fork programmaticallyjeffro2562024-12-161-11/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | Get height of the RingCT fork to start the output distributuon programmatically, instead of using a hardcoded index. If using a hardcoded index, when the hardfork tables are modified, this can cause segmentation faults or horrific privacy issues: https://codeberg.org/wownero/wownero/issues/488#issuecomment-2514880.
* | | | Merge pull request #9602luigi11112025-01-061-0/+2
|\ \ \ \ | |_|/ / |/| | | | | | | 34c7d31 wallet: shortchain history should include base block (0xFFFC0000)