aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-07-16Merge pull request #9392HEADmasterluigi11111-2/+3
b894042 epee: fix mlog filename compare bug. (0xFFFC0000)
2024-07-16Merge pull request #9386luigi11114-4/+4
1d024f0 chore: fix some comments (haouvw)
2024-07-16Merge pull request #9383luigi11118-9/+17
9f83e74 Daemon RPC: /getblocks.bin return chain's top_block_hash in resp (j-berman)
2024-07-16Merge pull request #9382luigi11112-3/+13
356829a Daemon RPC: high_height_ok req boolean field /getblocks.bin (j-berman)
2024-07-16Merge pull request #9379luigi11113-24/+25
6c28bdb wallet2: move get_rpc_status func to RPC server definition file (j-berman)
2024-07-16Merge pull request #9370luigi11112-4/+7
9fc48f4 Fix ZMQ Tx Pruning (Lee Clagett)
2024-07-16Merge pull request #9353luigi11112-0/+59
32f3245 cryptonote_protocol: prevent duplicate txs in fluff queue (0xFFFC0000)
2024-07-16Merge pull request #9349luigi11112-3/+3
9817293 workflows: don't hardcode repo name (selsta)
2024-07-16Merge pull request #9346luigi11113-1/+2
0fad1a8 src: update checkpoints to match v0.18.3.4 (selsta)
2024-07-16Merge pull request #9344luigi11112-4/+22
a026d5a wallet2: validate fetched block height and parent hash (Oscar Mira) c634c26 wallet2: use start_height consistently as const in process_parsed_blocks (Oscar Mira)
2024-07-16Merge pull request #9343luigi11111-0/+1
302fa9b wallet: fetch pool txs in pruned form (jeffro256)
2024-07-16Merge pull request #9342luigi11113-17/+1
b07a97c epee: partially revert c56ee140 to fix linking errors (jeffro256)
2024-07-16Merge pull request #9338luigi1111733-788/+732
4a376d6 copyright: fix vector.h typo (hinto.janaiyo) d61e8e9 workflows: delete copyright.yml (plowsof) 341771a copyright: bump to 2024 (copyCat)
2024-07-16Merge pull request #9326luigi11111-21/+21
004ead1 gpg_keys: renew jeffro256 (jeffro256)
2024-07-16Merge pull request #9324luigi11111-2/+0
2e061be README.md: sponsors;remove forked networking/globee (plowsof)
2024-07-16Merge pull request #9289luigi11111-558/+12
025021d BlockchainDB: shorter fixup() (jeffro256)
2024-07-16Merge pull request #9288luigi11114-57/+0
262ef47 BlockchainDB: remove lock/unlock methods (jeffro256)
2024-07-16Merge pull request #9278luigi11111-0/+3
18fbe54 add sum of amounts for unspent_outputs (SNeedlewoods)
2024-07-16Merge pull request #9215luigi11113-3/+3
3837bb8 remove repetitive word (cuinix)
2024-07-16Merge pull request #9114luigi11113-1/+13
88d074c Add support for Loongarch (YalingFang)
2024-07-16Merge pull request #8619luigi111120-128/+2336
e71c8bf wallet: background sync with just the view key (j-berman)
2024-07-16Merge pull request #8203luigi111112-155/+571
ddf3af1 add key exchange round booster to multisig_account (koe)
2024-07-11chore: fix some commentshaouvw4-4/+4
Signed-off-by: haouvw <jchaodaohang@foxmail.com>
2024-07-07epee: fix mlog filename compare bug.0xFFFC00001-2/+3
When using a relative path for the log filename, since the iteration on files adds "./" to the beginning of the filename monero-wallet-rpc and monero-wallet-cli cannot find already written log files and therefore rotate indefinitely.
2024-07-05wallet2: validate fetched block height and parent hashOscar Mira1-0/+18
2024-07-04wallet2: use start_height consistently as const in process_parsed_blocksOscar Mira2-4/+4
2024-06-24Daemon RPC: /getblocks.bin return chain's top_block_hash in respj-berman8-10/+18
2024-06-24wallet2: move get_rpc_status func to RPC server definition filej-berman3-24/+25
2024-06-24Daemon RPC: high_height_ok req boolean field /getblocks.binj-berman2-3/+13
Behavior before: when start_height > chain tip, response fails Behavior after: when req.high_height_ok is true && req.start_height > chain tip, server rerturns a successful response that includes chain height
2024-06-18Fix ZMQ Tx PruningLee Clagett2-4/+7
2024-06-05cryptonote_protocol: prevent duplicate txs in fluff queue0xFFFC00002-0/+59
1. Fix duplicate transaction #9335 2. Add test for cases where there are duplicate transaction in fluff Co-authored-by: Boog900 <boog900@tutanota.com>
2024-06-03workflows: don't hardcode repo nameselsta2-3/+3
2024-05-29src: update checkpoints to match v0.18.3.4selsta3-1/+2
2024-05-28wallet: fetch pool txs in pruned formjeffro2561-0/+1
2024-05-28epee: partially revert c56ee140 to fix linking errorsjeffro2563-17/+1
On Linux Mint 21.3, g++ Ubuntu 11.4.0-1ubuntu1~22.04, I get linking error for an undefined reference to `epee::string_tools::trim_right`. This PR reverts the changes to epee_readline.cpp in commit c56ee140, which turns a `boost::trim_right` callsite into an `epee::string_tools::trim_right` callsite.
2024-05-24wallet: background sync with just the view keyj-berman20-128/+2336
- 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.
2024-05-21add key exchange round booster to multisig_accountkoe12-155/+571
2024-05-21Merge pull request #9202luigi11111-0/+5
c94ca0f depends: add command to print variables (tobtoht)
2024-05-21Merge pull request #9339luigi11111-1/+1
a28c38c wallet2: correct variable usage in get_multisig_seed (selsta)
2024-05-21copyright: fix vector.h typohinto.janaiyo1-1/+1
2024-05-21wallet2: correct variable usage in get_multisig_seedselsta1-1/+1
2024-05-21workflows: delete copyright.ymlplowsof1-56/+0
2024-05-21copyright: bump to 2024copyCat732-732/+732
2024-05-21depends: add command to print variablestobtoht1-0/+5
2024-05-20Merge pull request #9316luigi11111-9/+8
697986d net_node: update seed nodes (selsta)
2024-05-20Merge pull request #9313luigi11111-0/+1
304dcf8 contrib: fix compilation error for boost 1.85 (0xFFFC0000)
2024-05-20Merge pull request #9310luigi11111-1/+1
6d4f7b8 wallet2: fix stagenet get_approximate_blockchain_height (selsta)
2024-05-20Merge pull request #9307luigi11111-2/+2
f9d9dd8 simplewallet: change boost::filesystem::complete to absolute. (0xFFFC0000)
2024-05-20Merge pull request #9305luigi11116-10/+33
de9c461 common: support boost filesystem copy_options. Co-authored-by: selsta <selsta@sent.at> (0xFFFC0000)
2024-05-20Merge pull request #9282luigi11113-1/+11
b27fda2 src: update checkpoints to match latest release (selsta)
2024-05-20Merge pull request #9270luigi11113-5/+26
267e31f Add drop_and_recreate in privatefile class. When creating a private file we need to delete the file if exist. (0xFFFC0000)
2024-05-20Merge pull request #9268luigi11114-6/+46
463228b Skip privacy networks (on tx sends) that don't have outgoing connections (Lee *!* Clagett)
2024-05-20Merge pull request #9259luigi11111-3/+3
427ba77 wallet2: ensure transfers and sweeps use same fee calc logic rnd2 (j-berman)
2024-05-20Merge pull request #9257luigi11112-105/+149
d6609b8 serialization: do any N-tuple (jeffro256)
2024-05-20Merge pull request #9245luigi11115-17/+135
8e80585 functional_tests: test HTTP digest auth (jeffro256)
2024-05-20Merge pull request #9232luigi11117-314/+33
7194506 Blockchain: remove old fee calc logic (jeffro256)
2024-05-20Merge pull request #9211luigi11112-2/+7
9b946ae Removed default cryptonote address (SyntheticBird45)
2024-05-20Merge pull request #9205luigi11112-4/+7
5dbaace depends: fix ar zero timestamp for openssl & unbound on android targets (tobtoht)
2024-05-20Merge pull request #9204luigi11112-0/+36
358d27c depends: native_libtapi: don't embed git hash (tobtoht)
2024-05-20Merge pull request #9200luigi11112-0/+17
3d2b6a8 depends: native_cctools: don't embed build date (tobtoht)
2024-05-20Merge pull request #9199luigi11113-13/+8
5fdd67d depends: {native_,}protobuf: speedup build (tobtoht) 3c16794 build: force Trezor for depends builds (tobtoht)
2024-05-20Merge pull request #9198luigi11114-1/+681
e151ff7 update blake2b test vectors (koe) fa47c7b add blake2b to src/crypto (koe)
2024-05-20Merge pull request #9194luigi11114-4/+31
9d101d5 serialization: protect blob serialization from undefined behavior (jeffro256)
2024-05-20Merge pull request #9151luigi111138-230/+185
ff49444 @tobtoht: undo rebase changes tx.dsts -> tx_dsts (jeffro256) 38f354e Enforce Tx unlock_time is Zero by Relay Rule (jeffro256)
2024-05-20Merge pull request #9149luigi11113-63/+40
c56ee14 Cleanup string_tools. 1. Use boost::filesystem for already available operations. 2. Use boost::string for already available operations. (0xFFFC0000)
2024-05-20Merge pull request #9064luigi11115-20/+39
4689ad2 trezor: support c++17 and protobuf v25, libusb fix (Dusan Klinec)
2024-05-20Merge pull request #8920luigi11113-38/+81
236e5d4 update TimingsDatabase to support csv format and incremental updating (koe)
2024-05-20Merge pull request #8488luigi11112-8/+14
e0b3507 tests: update block_weight for 2021 scaling (moneromooo-monero)
2024-05-20Merge pull request #8396luigi11112-2/+38
a46b6ba contrib: add more valgrind suppressions for spurious issues (moneromooo-monero) 7f3e31d unit_tests: fix accessing invalid memory in tree_hash test (moneromooo-monero)
2024-05-20Merge pull request #7852luigi111111-154/+197
8d94d08 replace 'multisig()' with 'get_multisig_status()' using multisig_account_status and including '.kex_is_done' member (koe)
2024-05-14gpg_keys: renew jeffro256jeffro2561-21/+21
Expiration date is simply pushed back to 1 year from now.
2024-05-12README.md: sponsors;remove forked networking/globeeplowsof1-2/+0
2024-05-12net_node: update seed nodesselsta1-9/+8
Also remove port for I2P seed nodes
2024-05-01contrib: fix compilation error for boost 1.850xFFFC00001-0/+1
2024-04-30common: support boost filesystem copy_options.0xFFFC00006-10/+33
Co-authored-by: selsta <selsta@sent.at>
2024-04-28wallet2: fix stagenet get_approximate_blockchain_heightselsta1-1/+1
2024-04-27simplewallet: change boost::filesystem::complete to absolute.0xFFFC00001-2/+2
2024-04-22Add drop_and_recreate in privatefile class.0xFFFC00003-5/+26
When creating a private file we need to delete the file if exist.
2024-04-20remove repetitive wordcuinix3-3/+3
Signed-off-by: cuinix <915115094@qq.com>
2024-04-11BlockchainDB: shorter fixup()jeffro2561-558/+12
Instead of hard-coding all missing key images into the code and inserting if missing, we simply pop all blocks after height 202611. This makes the `monerod` binary about 0.35% smaller.
2024-04-11BlockchainDB: remove lock/unlock methodsjeffro2564-57/+0
2024-04-10trezor: support c++17 and protobuf v25, libusb fixDusan Klinec5-20/+39
- fix If there is no protobuf version installed, if fails - passphrase test fix, wallet keys init was missing
2024-04-06src: update checkpoints to match latest releaseselsta3-1/+11
2024-04-05@tobtoht: undo rebase changes tx.dsts -> tx_dstsjeffro2561-4/+4
2024-03-30add sum of amounts for unspent_outputsSNeedlewoods1-0/+3
2024-03-29Skip privacy networks (on tx sends) that don't have outgoing connectionsLee *!* Clagett4-6/+46
2024-03-22wallet2: ensure transfers and sweeps use same fee calc logic rnd2j-berman1-3/+3
Looks like the logic from #8882 was accidentally removed in #8861 (regressing to the behavior noted in the #8882 description). This commit brings that logic back.
2024-03-21update blake2b test vectorskoe3-424/+423
2024-03-19serialization: do any N-tuplejeffro2562-105/+149
2024-03-15Cleanup string_tools.0xFFFC00003-63/+40
1. Use boost::filesystem for already available operations. 2. Use boost::string for already available operations.
2024-03-12Merge pull request #9243luigi11111-1/+1
c4e1c5a ringct: fix trunc_amount field name change (jeffro256)
2024-03-11functional_tests: test HTTP digest authjeffro2565-17/+135
Test: 1. Can't login to RPC server with --rpc-login enabled, but no auth provided 2. Can access RPC server with correct login 3. Can use internal HTTP client to access RPC server with correct login With commit 0ae5c91e504b8007dedc2b89c9b2b49c404ffec6 not reverted, we fail test 3.
2024-03-11ringct: fix trunc_amount field name changejeffro2561-1/+1
Caused in commit 05231400cebfeedbbc0a5386f38a033bba6314b3, PR #9035.
2024-03-11Merge pull request #9237luigi11111-26/+16
bcb15d3 Revert 'http_client: reduce number of packets sent for small bodies' (jeffro256)
2024-03-11Merge pull request #9228luigi11111-0/+3
c40d8b2 depends: add riscv64 linux build tag (selsta)
2024-03-10Revert "http_client: reduce number of packets sent for small bodies"jeffro2561-26/+16
This reverts commit 0ae5c91e504b8007dedc2b89c9b2b49c404ffec6.
2024-03-10serialization: protect blob serialization from undefined behaviorjeffro2564-4/+31
There is currently no compiler protection when someone tries to do (for example) `BLOB_SERIALIZER(std::vector<int>)`. You just get runtime allocation errors. This has already eaten up dev time before, so this PR adds a static assertion that the type must be trivially copyable, as defined by the C++ standard. Types can override this if applicable if they use `BLOB_SERIALIZER_FORCED`.
2024-03-10Blockchain: remove old fee calc logicjeffro2567-314/+33
2024-03-09depends: add riscv64 linux build tagselsta1-0/+3
2024-03-08Merge pull request #9225luigi11112-7/+19
a01d7cc Fixed mempool pruning (SChernykh)
2024-03-08Merge pull request #9219luigi11112-3/+3
e6f4875 wallet2: adjust fee during backlog, fix set priority (selsta)
2024-03-08Removed default cryptonote addressSyntheticBird452-2/+7
- Removed `localhost:8080` default value to address string in wallet rpc - Added an error response in case string is empty fixed indentation removed if and errors, default to localhost and port based on nettype Forgot ":" forgot ; and m_ removed wallet_rpc_server_error_codes.h
2024-03-08Fixed mempool pruningSChernykh2-7/+19
- Fixed undefined behavior after a call to `remove_tx_from_transient_lists` (it used an invalid iterator) - Fixed `txCompare` (it wasn't strictly weak ordered)
2024-03-08Merge pull request #9222luigi11111-1/+1
66e5081 get_block_template_backlog: better sorting logic (SChernykh)
2024-03-08Merge pull request #9218luigi11111-0/+1
7815023 tx_memory_pool: make double spends a no-drop offense (jeffro256)
2024-03-08get_block_template_backlog: better sorting logicSChernykh1-1/+1
std::sort is unstable, so it can return random sets of transactions when mempool has many transactions with the same fee/byte. It can result in p2pool mining empty blocks sometimes because it doesn't pick up "new" transactions immediately.
2024-03-08wallet2: adjust fee during backlog, fix set priorityselsta2-3/+3
2024-03-07Merge pull request #9214luigi11111-1/+0
399b884 unit_tests: fix strtoul unit test (jeffro256)
2024-03-07Merge pull request #9195luigi11111-0/+44
2a2da79 free function serialization DSL (jeffro256)
2024-03-07Merge pull request #9187luigi11111-2/+6
695084e depends: add download commands for freebsd & android sources (tobtoht)
2024-03-07Merge pull request #9184luigi11111-2/+2
7043238 Remove instructions for Void Linux, add NixOS (Siren)
2024-03-07Merge pull request #9179luigi11114-19/+19
e499e74 actions: update to v4 actions (tobtoht)
2024-03-07Merge pull request #9170luigi11111-0/+1
1bc09fc depends: add riscv64 to gitignore (tobtoht)
2024-03-07Merge pull request #9169luigi11112-40/+0
119e341 depends: remove unwind (tobtoht)
2024-03-07Merge pull request #9168luigi11112-30/+0
0c9a5c5 depends: remove ccache (tobtoht)
2024-03-07Merge pull request #9167luigi11112-28/+8
442146a depends: libusb: update to 1.0.27 (tobtoht)
2024-03-07Merge pull request #9166luigi11111-4/+3
5f1b5c2 depends: eudev: update to 3.2.14 (tobtoht)
2024-03-07tx_memory_pool: make double spends a no-drop offensejeffro2561-0/+1
Nodes who see different txs in a double spend attack will drop each other, splitting the network. Issue found by @boog900.
2024-03-07unit_tests: fix strtoul unit testjeffro2561-1/+0
2024-03-05depends: fix ar zero timestamp for openssl & unbound on android targetstobtoht2-4/+7
2024-02-26depends: native_libtapi: don't embed git hashtobtoht2-0/+36
2024-02-24Enforce Tx unlock_time is Zero by Relay Rulejeffro25638-230/+185
Related to https://github.com/monero-project/research-lab/issues/78 Added a relay rule that enforces the `unlock_time` field is equal to 0 for non-coinbase transactions. UIs changed: * Removed `locked_transfer` and `locked_sweep_all` commands from `monero-wallet-cli` APIs changed: * Removed `unlock_time` parameters from `wallet2` transfer methods * Wallet RPC transfer endpoints send error codes when requested unlock time is not 0 * Removed `unlock_time` parameters from `construct_tx*` cryptonote core functions
2024-02-24free function serialization DSLjeffro2561-0/+44
Example usage for Seraphis types (in global or `sp` namespace): ``` BEGIN_SERIALIZE_OBJECT_FN(sp::SpCoinbaseEnoteCore) FIELD_F(onetime_address) VARINT_FIELD_F(amount) END_SERIALIZE() BEGIN_SERIALIZE_OBJECT_FN(sp::SpEnoteCore) FIELD_F(onetime_address) FIELD_F(amount_commitment) END_SERIALIZE() ```
2024-02-24Merge pull request #9004luigi11115-12/+312
cdab0d4 cmake: require libsodium (tobtoht) 684bfca depends: move sodium to packages (tobtoht)
2024-02-24cmake: require libsodiumtobtoht4-5/+306
2024-02-24depends: move sodium to packagestobtoht1-7/+6
2024-02-24Merge pull request #9191luigi11111-2/+2
3313933 docs: omit i2p port number from ANONYMITY_NETWORKS (selsta)
2024-02-24Merge pull request #9189luigi11111-1/+2
f7670c9 cryptonote_core: early out on out of bounds scaling parameter (selsta)
2024-02-24Merge pull request #9182luigi11112-2/+23
538f19b depends: android_ndk: update to 18b (tobtoht)
2024-02-24Merge pull request #9165luigi11111-2/+2
c334d0e depends: openssl: update to 3.0.13 (tobtoht)
2024-02-24Merge pull request #9164luigi11111-6/+6
b26155b depends: expat: update to 2.6.0 (tobtoht)
2024-02-24Merge pull request #9163luigi11112-7/+7
edcc1e4 depends: unbound: update to 1.19.1 (tobtoht)
2024-02-24Merge pull request #9160luigi11115-4/+31
c50ade5 Daemon-specific proxy for the wallet-rpc. (0xFFFC0000)
2024-02-24Merge pull request #9155luigi11111-0/+4
ed50938 Zero initialize rctSigBase elements (Lee *!* Clagett)
2024-02-24Merge pull request #9143luigi11111-0/+1
b1c9a80 Add <cstdint> to aligned test (Lee *!* Clagett)
2024-02-24Merge pull request #9138luigi11115-85/+52
cd7ccfb Disable/fix ports with I2P (Lee Clagett)
2024-02-24Merge pull request #9137luigi11111-0/+19
8d25418 daemon: warn user on specifiying ZMQ args with --no-zmq (jeffro256)
2024-02-24Merge pull request #9132luigi11111-3/+3
9cd4757 Cleanup extra memory allocation, and port boost::shared_ptr to std::shared_ptr. (0xFFFC0000)
2024-02-24Merge pull request #9128luigi11111-7/+7
ba902f9 actions: remove unnecessary packages (tobtoht)
2024-02-24Merge pull request #9125luigi11116-659/+0
0c545f6 epee/test: remove levin_protocol_handler and core_proxy tests (jeffro256)
2024-02-24Merge pull request #9121luigi11112-1980/+2445
afe5167 depends: update config scripts (jeffro256)
2024-02-24Merge pull request #9006luigi11111-4/+4
47042ce wallet2: call on_reorg callback in handle_reorg (j-berman)
2024-02-24Merge pull request #9005luigi11117-17/+10
0d763a1 depends: move cmake system config to hosts files (tobtoht)
2024-02-24Merge pull request #8940luigi11111-0/+87
48b7d08 epee binary: container can read from empty seq of any type (jeffro256)
2024-02-24Merge pull request #8861luigi111110-43/+405
b13c5f6 wallet: feature: transfer amount with fee included (jeffro256)
2024-02-23depends: native_cctools: don't embed build datetobtoht2-0/+17
2024-02-23depends: {native_,}protobuf: speedup buildtobtoht2-12/+7
2024-02-23build: force Trezor for depends buildstobtoht1-1/+1
2024-02-21add blake2b to src/cryptokoe3-0/+681
2024-02-21docs: omit i2p port number from ANONYMITY_NETWORKSselsta1-2/+2
2024-02-20wallet: feature: transfer amount with fee includedjeffro25610-43/+405
To transfer ~5 XMR to an address such that your balance drops by exactly 5 XMR, provide a `subtractfeefrom` flag to the `transfer` command. For example: transfer 76bDHojqFYiFCCYYtzTveJ8oFtmpNp3X1TgV2oKP7rHmZyFK1RvyE4r8vsJzf7SyNohMnbKT9wbcD3XUTgsZLX8LU5JBCfm 5 subtractfeefrom=all If my walet balance was exactly 30 XMR before this transaction, it will be exactly 25 XMR afterwards and the destination address will receive slightly less than 5 XMR. You can manually select which destinations fund the transaction fee and which ones do not by providing the destination index. For example: transfer 75sr8AAr... 3 74M7W4eg... 4 7AbWqDZ6... 5 subtractfeefrom=0,2 This will drop your balance by exactly 12 XMR including fees and will spread the fee cost proportionally (3:5 ratio) over destinations with addresses `75sr8AAr...` and `7AbWqDZ6...`, respectively. Disclaimer: This feature was paid for by @LocalMonero.
2024-02-21cryptonote_core: early out on out of bounds scaling parameterselsta1-1/+2
2024-02-20depends: add download commands for freebsd & android sourcestobtoht1-2/+6
2024-02-20Remove instructions for Void Linux, add NixOSSiren1-2/+2
2024-02-19depends: remove unwindtobtoht2-40/+0
2024-02-19actions: update to v4 actionstobtoht4-19/+19
2024-02-18Daemon-specific proxy for the wallet-rpc.0xFFFC00005-4/+31
1. Daemon-specific proxy is exclusive with global proxy (--proxy). 2. If you set global proxy (--proxy) you cannot set daemon-specific proxy. 3. If you don't set global proxy, you can set proxy (or not set) proxy for each daemon connection with the proxy field in jsonrpc to the wallet-rpc.
2024-02-16epee binary: container can read from empty seq of any typejeffro2561-0/+87
2024-02-13depends: add riscv64 to gitignoretobtoht1-0/+1
2024-02-13depends: remove ccachetobtoht2-30/+0
2024-02-13depends: eudev: update to 3.2.14tobtoht1-4/+3
2024-02-13depends: libusb: update to 1.0.27tobtoht2-28/+8
2024-02-13depends: openssl: update to 3.0.13tobtoht1-2/+2
2024-02-13depends: expat: update to 2.6.0tobtoht1-6/+6
2024-02-13depends: unbound: update to 1.19.1tobtoht2-7/+7
2024-02-12depends: android_ndk: update to 18btobtoht2-2/+23
2024-02-07daemon: warn user on specifiying ZMQ args with --no-zmqjeffro2561-0/+19
Resolves https://github.com/monero-project/monero/issues/9127
2024-02-06Zero initialize rctSigBase elementsLee *!* Clagett1-0/+4
2024-01-30Disable/fix ports with I2PLee Clagett5-85/+52
2024-01-29Add <cstdint> to aligned testLee *!* Clagett1-0/+1
2024-01-23Cleanup extra memory allocation, and port boost::shared_ptr to std::shared_ptr.0xFFFC00001-3/+3
2024-01-19actions: remove unnecessary packagestobtoht1-7/+7
2024-01-19Merge pull request #9126luigi11111-2/+3
e7629dc CMake: only set policy CMP0148 to OLD if version >= 3.27 (jeffro256)
2024-01-19CMake: only set policy CMP0148 to OLD if version >= 3.27jeffro2561-2/+3
Co-authored-by: 0xFFFC0000 <0xFFFC0000@proton.me>
2024-01-18Merge pull request #9119luigi11111-0/+13
9690bfd gpg_keys: add 0xfffc0000 (0xFFFC0000)
2024-01-18Merge pull request #9117luigi11111-1/+1
7d3b9b9 remove ARCH='x86-64' from release-static (woodser)
2024-01-18Merge pull request #9111luigi11111-1/+2
34e62d5 workflows: enable manual run of copyright update (plowsof) dd978ee workflows: copyright commit author (plowsof)
2024-01-18Merge pull request #9103luigi11111-0/+2
562bdb8 storages: add missing return (selsta)
2024-01-18Merge pull request #9090luigi11112-34/+11
430b102 Cleanup scoped_ptr in src/common/dns_utils.cpp and header include: * No need for entire new class (Fix #8732). * Fix stdint.h header include in contrib/epee/include/net/http_base.h. (0xFFFC0000)
2024-01-18Merge pull request #9084luigi11111-2/+2
01c6e4b OpenBSD: node server fix IP localhost by aliasing (mesaoptimizer)
2024-01-18Merge pull request #9079luigi11112-0/+208
eed975d Fix missing checks for IsObject in ZMQ jsonrpc reading (Lee Clagett)
2024-01-18Merge pull request #9077luigi11115-125/+81
2525200 serialization: remove container wrappers and serialize directly (jeffro256)
2024-01-18Merge pull request #9076luigi11111-4/+6
eb083ca cmake: silence FindPythonInterp warning (tobtoht)
2024-01-18Merge pull request #9073luigi11118-28/+56
53e632b fix merge mining with more than one merge mined chain (Crypto City)
2024-01-18Merge pull request #9072luigi11111-4/+2
69a8175 Change std::result_of to auto (Lee Clagett)
2024-01-18Merge pull request #9069luigi11119-152/+87
a11e03a serialization: fix infinite loops and clean up dispatching (jeffro256)
2024-01-18Merge pull request #9061luigi11111-1/+8
085fdea Add compile-time check for input iterators in ::wire array writing (Lee *!* Clagett)
2024-01-18Merge pull request #9060luigi11111-1/+1
cf2253c workflows: upload macOS binary after name change (selsta)
2024-01-18Merge pull request #9059luigi11111-0/+13
2766d12 MMS: Ignore 2 more API errors thrown by latest PyBitmessage (rbrunner7)
2024-01-18Merge pull request #9056luigi11111-0/+51
deb8c79 gpg_keys: add tobtoht (tobtoht)
2024-01-18Merge pull request #9052luigi11111-7/+16
4acae11 Fix EAGAIN bug in ZMQ-RPC/ZMQ-PUB (Lee *!* Clagett)
2024-01-18Merge pull request #9049luigi11111-3/+1
1062b17 wallet: sign_tx: get tx pubkey from extra (tobtoht)
2024-01-18Merge pull request #9023luigi11111-16/+43
b2eb47d wallet: mitigate statistical dependence for decoy selection within rings (jeffro256)
2024-01-17epee/test: remove levin_protocol_handler and core_proxy testsjeffro2566-659/+0
2024-01-12depends: update config scriptsjeffro2562-1980/+2445
The files are exact copies from the original repository (git://git.savannah.gnu.org/config.git), in commit 28ea239c53a2d5d8800c472bc2452eaa16e37af2. The main reason for the update is because loongarch was mentioned in PR #9114 and new the latest config files handle loongarch, as well as WASM64, since the old files only cover WASM32. Tandem NSX and IA16, are also handled in the newest config files, which covers the changes TheCharlatan made in 2018.
2024-01-09gpg_keys: add 0xfffc00000xFFFC00001-0/+13
2024-01-06remove ARCH="x86-64" from release-staticwoodser1-1/+1
2024-01-05Add support for LoongarchYalingFang3-1/+13
2024-01-02workflows: enable manual run of copyright updateplowsof1-0/+1
2024-01-02workflows: copyright commit authorplowsof1-1/+1
author is now copyCat