aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-04-19Merge pull request #8246luigi11112-13/+13
6491700 Makefile: fix spelling of CMAKE_BUILD_TYPE value (selsta)
2022-04-19Merge pull request #8245luigi11111-1/+1
3593a98 simplewallet: fix integrated_address output string (selsta)
2022-04-19Merge pull request #8240luigi11111-0/+0
c68d78d randomx: update submodule (selsta)
2022-04-19Merge pull request #8232luigi11111-0/+1
0f7b20a Added support for Ledger Nano S Plus (Mathias Herberts)
2022-04-19Merge pull request #8061luigi111139-230/+1165
ea87b30 Add view tags to outputs to reduce wallet scanning time (j-berman)
2022-04-19readme: small fixeshinto.janaiyo1-15/+29
2022-04-19depends: update unbound to 1.15.0selsta1-2/+2
2022-04-18Bump ring size to 16 for v15 & remove set default in wallet clij-berman9-87/+38
2022-04-18Merge pull request #8211luigi1111103-10281/+98
1137142 Change C-cast to static_cast in net_peerlist.h (Jeffrey) 175b411 Change C-style-casts to static_cast in time_helper.h (Jeffrey) b49ed59 Remove the only 4 non-UTF8 characters in codebase (Jeffrey) 1f25aa2 Factor out move_it_backward from misc_language.h (Jeffrey) 7764d69 Move copyable_atomic into connection_context (Jeffrey) 801568d Refactor out to_nonconst_iterator.h (Jeffrey) 87ec36c Refactor out pragma_comp_defs (Jeffrey) 441c860 Merge functionality of misc_os_dependent into time_helper.h (Jeffrey) 40f02f9 Add Include statements (Jeffrey) 12b1b74 Trimming Fat (Jeffrey 690ce56 Boring Old Deletes (Jeffrey)
2022-04-18"Change C-cast to static_cast in net_peerlist.h"Jeffrey1-1/+1
Thanks @mj-xmr: https://github.com/monero-project/monero/pull/8211#discussion_r823870855
2022-04-18Change C-style-casts to static_cast in time_helper.hJeffrey1-4/+4
At the request of @mj-xmr: https://github.com/monero-project/monero/pull/8211#discussion_r822868321
2022-04-18Remove the only 4 non-UTF8 characters in codebaseJeffrey1-4/+4
Relevant commit in old PR: 1b798a7042070cc8063bd341ebf7025da554b632
2022-04-18Factor out move_it_backward from misc_language.hJeffrey2-17/+16
Relevant commit from old PR: 330df2952cb2863a591158b984c0fb7f652887ac
2022-04-18Move copyable_atomic into connection_contextJeffrey2-60/+35
Relevant commit from old PR: bd0a5119957d3ef9130a0b82599e1696995ef235
2022-04-18Refactor out to_nonconst_iterator.hJeffrey4-55/+1
Relevant commit on old PR: 2499269696192ce30dd125ddee90a80d4326dff9
2022-04-18Refactor out pragma_comp_defsJeffrey4-35/+4
Relevant commits on the old cleanup PR: 36933c7f5c7778e2d7fbfea5361c11fb41070467 21e43de0f300ee47b7e597098908601bf591950b 3c678bb1cedfd7b865ac2e7aaf014de4bfb3eb3d
2022-04-18Merge functionality of misc_os_dependent into time_helper.hJeffrey10-281/+35
Actions: 1. Remove unused functions from misc_os_dependent.h 2. Move three remaining functions, get_gmt_time, get_ns_count, and get_tick_count into time_helper.h 3. Remove unused functions from time_helper.h 4. Refactor get_ns_count and get_internet_time_str and get_time_interval_string 5. Remove/add includes as needed Relevant commits on the old PR: a9fbe52b02ffab451e90c977459fea4642731cd1 9a59b131c4ed1be8afe238fff3780fe203c65a46 7fa9e2817df9b9ef3f0290f7f86357939829e588
2022-04-18Add Include statementsJeffrey3-0/+3
2022-04-18Trimming FatJeffrey9-151/+0
Remove unused include statements or unused definitions.
2022-04-18Boring Old DeletesJeffrey71-9678/+0
Here lies dozens of unused files. This commit is ONLY file deletions except for the removing of a couple of #includes and removing filenames from CmakeLists where appropriate.
2022-04-18Optimized keccak implementationSChernykh1-33/+62
All tests were conducted on the same PC (Ryzen 5 5600X running at fixed 4.65 GHz). Before: test_cn_fast_hash<32> (100000 calls) - OK: 1 us/call test_cn_fast_hash<16384> (1000 calls) - OK: 164 us/call After: test_cn_fast_hash<32> (100000 calls) - OK: 0 us/call test_cn_fast_hash<16384> (1000 calls) - OK: 31 us/call More than 5 times speedup for cn_fast_hash. Also noticed consistent 1-2% improvement in test_construct_tx results.
2022-04-18Add view tags to outputs to reduce wallet scanning timej-berman39-230/+1165
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.
2022-04-18Merge pull request #8207luigi111115-138/+15
4db6aed CMake: Add missing headers via monero_find_all_headers macro (mj-xmr)
2022-04-18Merge pull request #7819luigi111117-49/+530
b030f20 Fee changes from ArticMine (moneromooo-monero) 9f786f0 epee: allow copying a rolling_median_t object (moneromooo-monero)
2022-04-15Tiny: add .vscode/ to .gitignoremj-xmr1-0/+2
2022-04-10wallet2: use BP+ for cold signingmoneromooo-monero1-1/+1
reported by ukoehb
2022-04-10CMake: Add missing BUILD_SHARED_LIBS optionmj-xmr1-2/+4
2022-04-10Fee changes from ArticMinemoneromooo-monero15-48/+498
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
2022-04-10epee: allow copying a rolling_median_t objectmoneromooo-monero2-1/+32
2022-04-09Remove /includeJeffrey3-177/+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`
2022-04-09Remove serialization/enableableJeffrey3-72/+0
Currently working on an EPEE [ser/de]ialization library for Rust and at first glance, EPEE seemed to have support for optional wrappers. However, after looking into it, this feature appears to be half-baked and unused. Furthermore, adding support for optional values would be better suited to implement at the storage level, in my opinion. That would make parsing DOMs easier and less error-prone. If anyone is currently using this code, please comment. Thanks! At the time of writing, this PR has no merge conflicts with #8211
2022-04-08Makefile: fix spelling of CMAKE_BUILD_TYPE valueselsta2-13/+13
2022-04-08simplewallet: fix integrated_address output stringselsta1-1/+1
2022-04-06Merge pull request #8242luigi11111-3/+1
6abe3fe tests: integrated_address: remove missing payment id assertion (reemuru)
2022-04-06tests: integrated_address: remove missing payment id assertionreemuru1-3/+1
The integrated address functional test fails in the workflows due to an assertion for missing payment id that is no longer needed. Remove the assertion and update the assertion count. Fixes 7dcfccb: ("wallet_rpc_server: fix make_integrated_address with no payment id")
2022-04-06CMake: Add missing headers via monero_find_all_headers macromj-xmr15-138/+15
2022-04-06randomx: update submoduleselsta1-0/+0
2022-04-06Merge pull request #8228luigi11113-144/+75
1ce9e9c Remove dead code from parserse_base_utils and fix unit tests (Jeffrey)
2022-04-06Merge pull request #8223luigi111110-50/+43
17772ef Eliminate dependence on boost::interprocess #8223 (Jeffrey)
2022-04-06Merge pull request #8215luigi11112-3/+13
d1f1947 wallet_rpc_server: support regex for get_accounts tag (reemuru)
2022-04-06Merge pull request #8213luigi11111-6/+0
7dcfccb wallet_rpc_server: fix make_integrated_address with no payment id (moneromooo-monero)
2022-04-06Merge pull request #8212luigi11111-3/+0
591c174 Remove footgun doc comment in miner TX validation (Luke Parker)
2022-04-06Merge pull request #8205luigi11112-1/+2
0d6fce8 Compil. time: cryptonote_core minus portable_storage header (mj-xmr)
2022-04-06Merge pull request #8197luigi1111695-695/+793
da9aa1f Copyright: Update to 2022 (mj-xmr)
2022-04-06Merge pull request #8195luigi11111-4/+4
3c82958 wallet2: update stagenet rollback blocks (selsta)
2022-04-06Merge pull request #8180luigi11111-13/+47
3f88fdd simplewallet: add option for exporting tx keys (reemuru)
2022-04-06Merge pull request #8179luigi11112-10/+167
ae0a840 wallet2: decrease the amount of data exchanged for output export (moneromooo-monero)
2022-04-06Merge pull request #8053luigi11111-2/+2
cf44349 account info text alignment (im)
2022-04-06Merge pull request #7937luigi11111-14/+36
83bb027 Make RPC server functions that read db thread safe (j-berman)
2022-04-05Merge pull request #7170luigi111137-165/+2674
bd27deb Bulletproofs+ (SarangNoether) b7713cc Precompute initial transcript hash (SarangNoether) b535d66 Updates from security audit (SarangNoether) a0d80b1 plug bulletproofs plus into consensus (moneromooo-monero) 75bd004 ringct: a few minor optimizations from review (moneromooo-monero) a345060 ringct: port some of vtnerd's review changes from BP+ to BP (moneromooo-monero) 4c94cfe store outPk/8 in the tx for speed (moneromooo-monero) 5acdd0e bulletproofs+: some minor cleanup from vtnerd's review (moneromooo-monero)
2022-04-05Merge pull request #7153luigi11114-0/+38
354e1d9 Make the wallet name optional when locked. (Norman Moeschter)
2022-04-05Make RPC server functions that read db thread safej-berman1-14/+36
- grab an lmdb db_rtxn_guard to ensure consistent data from the db - fixed on_getblockhash error resp when requested height >= blockchain height - left functions that read shared memory untouched for now
2022-04-05bulletproofs+: some minor cleanup from vtnerd's reviewmoneromooo-monero1-11/+2
2022-04-05store outPk/8 in the tx for speedmoneromooo-monero5-7/+31
It avoids dividing by 8 when deserializing a tx, which is a slow operation, and multiplies by 8 when verifying and extracing the amount, which is much faster as well as less frequent
2022-04-05ringct: port some of vtnerd's review changes from BP+ to BPmoneromooo-monero1-13/+11
2022-04-05ringct: a few minor optimizations from reviewmoneromooo-monero1-18/+15
2022-04-05plug bulletproofs plus into consensusmoneromooo-monero28-159/+1137
2022-04-04Updates from security auditSarang Noether1-2/+10
https://suyash67.github.io/homepage/assets/pdfs/bulletproofs_plus_audit_report_v1.1.pdf
2022-04-04Precompute initial transcript hashSarang Noether1-13/+11
2022-04-04Bulletproofs+Sarang Noether11-2/+1517
2022-03-31Added support for Ledger Nano S PlusMathias Herberts1-1/+2
2022-03-30Remove dead code from parserse_base_utils and fix unit testsJeffrey3-144/+75
* Remove `match_string()`, `match_number()`, and `match_word()` * Remove `match_word_with_extrasymb()` and `match_word_til_equal_mark()` * Adapt unit test for `match_number()` to `match_number2()` * Adapt unit test for `match_string()` to `match_string2()` Note: the unit tests were testing for the old version of the functions, and the interfaces for these functions changed slightly, so I had to also edit the tests. As of writing, this PR has no merge conflicts with #8211 Additional changes during review: * Explicitly set up is_[float/signed]_val to be changed before each call * Structify the tests and fix uninitialized variables
2022-03-30Eliminate dependence on boost::interprocess #8223Jeffrey10-50/+43
In this repo, `boost::interprocess` was being used soley to make `uint32_t` operations atomic. So I replaced each instance of `boost::interprocess::ipcdetail::atomic(...)32` with `std::atomic` methods. I replaced member declarations as applicable. For example, when I needed to change a `volatile uint32_t` into a `std::atomic<uint32_t>`. Sometimes, a member was being used a boolean flag, so I replaced it with `std::atomic<bool>`. You may notice that I didn't touch `levin_client_async.h`. That is because this file is entirely unused and will be deleted in PR monero-project#8211. Additional changes from review: * Make some local variables const * Change postfix operators to prefix operators where value was not need
2022-03-29wallet2: decrease the amount of data exchanged for output exportmoneromooo-monero2-10/+167
2022-03-25Fix typo: SERIALIZE_TYPE_DUOBLEJeffrey3-5/+5
2022-03-18Merge pull request #8216luigi11111-1/+1
f22051d replace erciccione's seednode with one on haveno's infrastructure (erciccione)
2022-03-18Merge pull request #8187luigi11111-6/+0
9bde2db Fixes: Don't require --rpc-login with --rpc-access-control-origins #8168 (Jeffrey)
2022-03-18Merge pull request #8186luigi11116-12/+24
f68f927 Undefined behaviour fixes (SChernykh)
2022-03-18Merge pull request #8170luigi11111-17/+0
14eb42d systemd: remove outdated torsocks example (selsta)
2022-03-18Merge pull request #8169luigi11112-1/+4
5e201fe rpc: add explicit restricted flag to /get_info (tobtoht)
2022-03-18Merge pull request #8158luigi11112-5/+15
e5000a9 Balance includes unconfirmed transfers to self (woodser)
2022-03-18Merge pull request #7675luigi11112-2/+12
de4413b workflows: don't build PRs if only docs and READMEs are being changed (erciccione)
2022-03-13wallet_rpc_server: support regex for get_accounts tagreemuru2-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.
2022-03-13replace erciccione's seednode with one on haveno's infrastructureerciccione1-1/+1
2022-03-11wallet_rpc_server: fix make_integrated_address with no payment idmoneromooo-monero1-6/+0
2022-03-10Remove footgun doc comment in miner TX validationLuke Parker1-3/+0
This comment suggests this check is unnecessary, when it is completely necessary as miner TXs can have multiple outputs *which is a statement directly, and incorrectly, contradicted by this comment*. While I don't ever see someone removing this code and getting their edits merged into Monero, someone inexperienced who thinks they're cleaning old code may break their own work, and then there's really just zero benefit to keeping this around.
2022-03-10Make the wallet name optional when locked.Norman Moeschter4-0/+38
2022-03-04Compil. time: cryptonote_core minus portable_storage headermj-xmr2-1/+2
2022-03-04Copyright: Update to 2022mj-xmr695-695/+793
2022-03-02Merge pull request #8161luigi11111-2/+2
b8beac3 Fix typos in docs (Robert Theis)
2022-03-02Merge pull request #8145luigi11112-1/+9
fb5b2b3 support authentication in monero-wallet-rpc set_daemon (woodser)
2022-03-02Merge pull request #8052luigi11117-10/+110
c36ea26 fix ge_p3_is_point_at_infinity(), which is evaluating field elements that haven't been reduced by the field order (koe)
2022-03-02Merge pull request #7877luigi111130-946/+2218
e08abaa multisig key exchange update and refactor (koe)
2022-03-02Merge pull request #7084luigi11111-1/+4
06e6c8b crypto: fix constant randomx exceptions in large page allocator (moneromooo-monero)
2022-03-01wallet2: update stagenet rollback blocksselsta1-4/+4
2022-02-24simplewallet: add option for exporting tx keysreemuru1-13/+47
This commit adds an option to export transaction keys when performing export_transfers all. By passing option=with_keys a new column 'tx key' will be populated with respective keys.
2022-02-22multisig key exchange update and refactorkoe30-946/+2218
2022-02-19Fixes: Don't require --rpc-login with --rpc-access-control-origins #8168Jeffrey1-6/+0
This PR removes the requirement for --rpc-login to be specified if --rpc-access-control-origins is. This will allow public nodes to serve cross-origin requests. You can still use --rpc-login with --rpc-access-control-origins, but it is no longer mandatory. Original Issue: #8168
2022-02-19crypto: fix constant randomx exceptions in large page allocatormoneromooo-monero1-1/+4
If allocating large pages fails, we don't try again. This has the obvious drawback of not being able to use large pages if they fail once.
2022-02-19Undefined behaviour fixesSChernykh6-12/+24
Fixes issues reported in #8120
2022-02-08systemd: remove outdated torsocks exampleselsta1-17/+0
2022-02-07rpc: add explicit restricted flag to /get_infotobtoht2-1/+4
2022-01-31Balance includes unconfirmed transfers to selfwoodser2-5/+15
2022-01-28Fix typos in docsRobert Theis1-2/+2
2022-01-25fix ge_p3_is_point_at_infinity(), which is evaluating field elements that ↵koe7-10/+110
haven't been reduced by the field order
2022-01-24Merge pull request #8135luigi11111-1/+1
2d0a518 Update Copyright year in README.md (IceCruelStuff)
2022-01-24Merge pull request #8130luigi11111-3/+3
1051276 Update net_node.inl (Gingeropolous)
2022-01-24Merge pull request #8126luigi11111-1/+2
e73e1e7 Use CMD in Dockerfile (Kevin Thomas)
2022-01-24Merge pull request #8123luigi11111-4/+5
4446cc8 wallet inits cache if file and blob missing (woodser)
2022-01-24Merge pull request #8117luigi11111-1/+13
505b382 cmake: enable build on riscv{64, 32} (Xeonacid)
2022-01-24Merge pull request #8116luigi11111-1/+1
6366187 Fixed warnings for Clang (used as CMAKE_CXX compiler) (SerHack)
2022-01-24Merge pull request #8112luigi11111-2/+2
fef0280 Fix docker instructions to account for non-root user (Kevin Thomas)
2022-01-24Merge pull request #8101luigi11111-3/+37
6a46f8c Add copy commands for compiled binaries (Seth For Privacy) 52612e7 Add archive details to post-build section (Seth For Privacy) 03a256e Add git clone and cd commands for initial prep (Seth For Privacy) cd76011 Add note on adding SSH keys for Github (Seth For Privacy) 9d02531 Update DOCKRUN.md (Seth For Privacy) eeb0be4 Bump versions in DOCKRUN.md and add log commands (Seth For Privacy)
2022-01-24Merge pull request #8044luigi11111-1/+6
a02b342 Avoid unnecessary 'Invalid hashing blob' error message (rbrunner7)
2022-01-24Merge pull request #8041luigi11113-5/+5
361f621 Fix typos (Dimitris Apostolou)
2022-01-17support authentication in monero-wallet-rpc set_daemonwoodser2-2/+10
2022-01-07Update Copyright year in README.mdIceCruelStuff1-1/+1
2022-01-04Update net_node.inlGingeropolous1-3/+3
2021-12-31Use CMD in DockerfileKevin Thomas1-1/+2
According to Dockerfile best practices (https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#entrypoint) the best use for ENTRYPOINT is to set the image’s main command and then use CMD as the default flags. This makes it easier to change the flags passed to monerod when running the Docker image.
2021-12-24wallet inits cache if file and blob missingwoodser1-4/+5
2021-12-22cmake: enable build on riscv{64, 32}Xeonacid1-1/+13
tested on Arch Linux RISC-V.
2021-12-19Fixed warnings for Clang (used as CMAKE_CXX compiler)SerHack1-1/+1
2021-12-15Merge pull request #8103luigi11111-9/+5
e9156d7 functional_tests: update uri test with external pid (selsta)
2021-12-14functional_tests: update uri test with external pidselsta1-9/+5
2021-12-13Fix docker instructions to account for non-root userKevin Thomas1-2/+2
Since the non-root user 'monero' is specified in the Dockerfile, the bind mount when running the container should be set to this user's home directory be default, not the root user's home directory.
2021-12-02Add copy commands for compiled binariesSeth For Privacy1-0/+7
2021-12-02Add archive details to post-build sectionSeth For Privacy1-2/+13
Also moved the tail of in-progress logs to two distinct and precise tail commands, was a good recommendation by @hyc.
2021-12-02Add git clone and cd commands for initial prepSeth For Privacy1-0/+7
2021-12-02Add note on adding SSH keys for GithubSeth For Privacy1-0/+2
2021-12-01Update DOCKRUN.mdSeth For Privacy1-3/+4
2021-12-01Bump versions in DOCKRUN.md and add log commandsSeth For Privacy1-2/+8
2021-11-30Merge pull request #8097luigi11112-5/+7
6e6ad80 Fix Android OpenSSL build (Howard Chu)
2021-11-30Merge pull request #8067luigi11111-6/+2
53be72c make_uri disallows standalone payment ids (woodser)
2021-11-30Merge pull request #8066luigi11111-1/+1
7bc261b cmake: find readline on macOS ARM (selsta)
2021-11-30Merge pull request #8057luigi11111-4/+4
1efe624 device_ledger: fix incorrect macro (selsta)
2021-11-30Merge pull request #8054luigi11111-1/+1
a491175 cmake: fix incorrect else syntax (selsta)
2021-11-30Merge pull request #8027luigi11111-4/+1
94dc19a cmake: remove including non-existent directory (selsta)
2021-11-30Merge pull request #7943luigi11111-2/+2
3a90be4 rpc: don't set error code as status string (selsta)
2021-11-30`make_uri` disallows standalone payment idswoodser1-6/+2
2021-11-30Fix Android OpenSSL buildHoward Chu2-5/+7
depends didn't have target-specific overrides for _build_env so ANDROID_NDK_HOME wasn't being set at build time. This fix supersedes the manual edit of Configuration/15-android.conf. Resolves #8095
2021-11-29Merge pull request #7910luigi11113-0/+220
4571d36 Add simple script for running gitian-build (Howard Chu)
2021-11-26Merge pull request #8083luigi11111-0/+15
e8e507f rpc: fix DoS vector in get_output_distribution (moneromooo-monero)
2021-11-26Merge pull request #8071luigi11111-0/+0
22b891c Update RandomX (Jethro Grassie)
2021-11-26Merge pull request #8070luigi11116-5/+87
a4ebec9 Add python method (Howard Chu) 0221b01 Add calcpow RPC (Howard Chu)
2021-11-26Merge pull request #8065luigi11111-1/+1
82828bf cryptonote_core: fix unused lambda warning (selsta)
2021-11-26Merge pull request #8055luigi11112-2/+28
a30928f depends: bump hidapi to 0.11.0 (selsta)
2021-11-21Add python methodHoward Chu1-0/+14
2021-11-20Add calcpow RPCHoward Chu5-5/+73
Calculate PoW hash for a block candidate
2021-11-20Update RandomXJethro Grassie1-0/+0
2021-11-17cmake: find readline on macOS ARMselsta1-1/+1
2021-11-16cryptonote_core: fix unused lambda warningselsta1-1/+1
2021-11-12device_ledger: fix incorrect macroselsta1-4/+4
The current code does work by accident, but it might break if someone uses ASSERT_SW in a different place, or if variables get renamed.
2021-11-09Merge pull request #8048luigi11111-0/+0
e0a5dce Update RandomX to v1.1.10 (tevador)
2021-11-09Merge pull request #8038luigi11111-7/+3
fbe8358 device: fix ledger error strings, add human friendly messages (selsta)
2021-11-09Merge pull request #8031luigi11111-16/+54
187633c slow_hash: don't blow out Mac stack on ARM64 (Howard Chu)
2021-11-09Merge pull request #7169luigi11113-50/+74
bbe3b27 tx_pool: full tx revalidation on fork boundaries (moneromooo-monero)
2021-11-10depends: bump hidapi to 0.11.0selsta2-2/+28
2021-11-10cmake: fix incorrect else syntaxselsta1-1/+1
2021-11-10account info text alignmentim1-2/+2
2021-11-08Update RandomX to v1.1.10tevador1-0/+0
2021-11-05Avoid unnecessary 'Invalid hashing blob' error messagerbrunner71-1/+6
2021-11-04Merge pull request #8021luigi11112-3/+65
8f21001 depends: openssl 1.1.1k -> 1.1.1l (selsta)
2021-11-03Fix typosDimitris Apostolou3-5/+5
2021-11-03device: fix ledger error strings, add human friendly messagesselsta1-7/+3
2021-11-01tx_pool: full tx revalidation on fork boundariesmoneromooo-monero3-50/+74
avoids mining txes after a fork that are invalid by this fork's rules, but were valid by the previous fork rules at the time they were verified and added to the txpool.
2021-11-01Merge pull request #8029luigi11111-1/+1
548cfc8 crypto: fix typo in ifdef (selsta)
2021-11-01Merge pull request #8020luigi11112-1/+6
47e7a43 wallet_api: enable set_strict_default_file_permissions (tobtoht)
2021-11-01Merge pull request #8017luigi11111-2/+0
a15466d wallet2: remove 2 unused variables (selsta)
2021-11-01Merge pull request #8016luigi11111-14/+9
b0ec9f8 epee: avoid ADL selecting C++14 std::quoted (selsta)
2021-11-01Merge pull request #8013luigi11112-23/+4
2cad563 wallet2: fix key encryption when changing ask-password from 0/1 to 2 (moneromooo-monero)
2021-10-30slow_hash: don't blow out Mac stack on ARM64Howard Chu1-16/+54
2021-10-29crypto: fix typo in ifdefselsta1-1/+1
2021-10-28cmake: remove including non-existent directoryselsta1-4/+1
2021-10-25Merge pull request #8019luigi11113-0/+3
e106bdc epee: add missing header (selsta)
2021-10-25Merge pull request #8018luigi11111-0/+1
1f81f5f protocol: fix spurious rejection of downloaded blocks (moneromooo-monero)
2021-10-25Merge pull request #8011luigi11111-2/+2
9c61110 cmake: use CMAKE_CURRENT_LIST_DIR for git version (selsta)
2021-10-25Merge pull request #8006luigi11116-11/+11
69c09ad Add README to release archives (Howard Chu) 4881154 README v12 fork occurred on 2019-11-30 as expected (Howard Chu)
2021-10-25Merge pull request #8004luigi11111-8/+6
ace4669 simplewallet: fix incoming_transfers index error (selsta)
2021-10-25Merge pull request #8003luigi11111-1/+9
75d05b9 download: fix leak (moneromooo-monero)
2021-10-25Merge pull request #8002luigi11115-91/+28
49441d4 depends: update zeromq package to 4.3.4 (selsta)
2021-10-25Merge pull request #7995luigi11111-2/+3
797ca97 socks: ignore any exceptions in shutdown/close (selsta)
2021-10-24rpc: fix DoS vector in get_output_distributionmoneromooo-monero1-0/+15
This will prevent people spending old pre-rct outputs using a stranger's node, which may be a good thing
2021-10-22depends: openssl 1.1.1k -> 1.1.1lselsta2-3/+65
2021-10-22socks: ignore any exceptions in shutdown/closeselsta1-2/+3
2021-10-22wallet_api: enable set_strict_default_file_permissionstobtoht2-1/+6
2021-10-22epee: add missing headerselsta3-0/+3
2021-10-21protocol: fix spurious rejection of downloaded blocksmoneromooo-monero1-0/+1
when kicking a peer for inactivity, clear the set of requested blocks, or next time we requests blocks from it, we'll probably reject the incoming blocks due to missing the previous requested blocks
2021-10-20wallet2: remove 2 unused variablesselsta1-2/+0
2021-10-20epee: avoid ADL selecting C++14 std::quotedselsta1-14/+9
2021-10-19wallet2: fix key encryption when changing ask-password from 0/1 to 2moneromooo-monero2-23/+4
we reuse the wallet_keys_unlocker object, which does the right thing in conjunction with other users of decrypt/encrypt (ie, refresh).
2021-10-19cmake: use CMAKE_CURRENT_LIST_DIR for git versionselsta1-2/+2
2021-10-17Merge pull request #8001luigi11111-35/+105
9973edd ARMv8: detect AES support dynamically (Howard Chu)
2021-10-17Merge pull request #7994luigi11111-1/+1
84c5257 Decrease the 'recent spend window' in gamma re-select to 15 blocks (j-berman)
2021-10-17Merge pull request #7971luigi11113-3/+3
b00e21d cmake: set cpp14 standard (selsta)
2021-10-17Merge pull request #7876luigi11111-2/+0
5e63f6c Ledger: member 'mode' was shadowing that of base class (mj-xmr)
2021-10-17Merge pull request #7869luigi11111-2/+2
ad9fde4 UB: virtual methods in destructor at Trezor (mj-xmr)
2021-10-17Merge pull request #7867luigi11111-1/+1
eed7e79 UB: Not calling virtual method in destructor of WalletImpl (mj-xmr)
2021-10-17Merge pull request #7859luigi11111-5/+5
514f8fa LMDB: protection against UB, by not calling virtual methods from destructor (mj-xmr)
2021-10-17Merge pull request #7808luigi11114-10/+85
7caab8d utils/health: separate Clang Tidy tests for C & C++ (mj-xmr)
2021-10-17Merge pull request #7804luigi11111-1/+1
852f319 Doxygen: Exclude build directories (mj-xmr)
2021-10-17Merge pull request #7799luigi11111-7/+1
76542ea Fix precision of average_output_time (j-berman)
2021-10-14Add README to release archivesHoward Chu5-9/+9
Also add docs/ANONYMITY_NETWORKS.md Even though there is no "docs" dir in the archive...
2021-10-14README v12 fork occurred on 2019-11-30 as expectedHoward Chu1-2/+2
Not just an estimated date. Also fix whitespace alignment. Note for future: always use backslash-asterisk if adding this notation, otherwise it screws up rendering on some MD formatters
2021-10-11Merge pull request #7989luigi11111-5/+0
9cd7aa6 cmake: don't optimize debug build (selsta)
2021-10-11Merge pull request #7975luigi11111-0/+2
48a0997 blockchain: fix pedantic assert (selsta)
2021-10-11Merge pull request #7972luigi11111-1/+1
bc167a1 cmake: fix copy/paste typo (selsta)
2021-10-11Merge pull request #7960luigi11111-2/+14
2e8936f rpc: Fix get_transactions failing when not found (Nathan Dorfman)
2021-10-11Merge pull request #7958luigi11112-3/+13
5f54dea LMDB: fix deadlock in resized detection (Howard Chu)
2021-10-11Merge pull request #7954luigi11111-1/+8
313edb2 Doc: building gtest on Debian and Ubuntu (ralphmapper)
2021-10-11Merge pull request #7912luigi11116-22/+11
ae41178 gitian: cleanup more unused packages (Howard Chu) 4ea7832 gitian: omit ccache from gitian builds (Howard Chu)