Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-04-18 | "Change C-cast to static_cast in net_peerlist.h" | Jeffrey | 1 | -1/+1 | |
Thanks @mj-xmr: https://github.com/monero-project/monero/pull/8211#discussion_r823870855 | |||||
2022-04-18 | Factor out move_it_backward from misc_language.h | Jeffrey | 1 | -8/+15 | |
Relevant commit from old PR: 330df2952cb2863a591158b984c0fb7f652887ac | |||||
2022-04-18 | Move copyable_atomic into connection_context | Jeffrey | 1 | -4/+35 | |
Relevant commit from old PR: bd0a5119957d3ef9130a0b82599e1696995ef235 | |||||
2022-04-18 | Merge functionality of misc_os_dependent into time_helper.h | Jeffrey | 2 | -2/+2 | |
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-18 | Add Include statements | Jeffrey | 2 | -0/+2 | |
2022-04-18 | Trimming Fat | Jeffrey | 2 | -2/+0 | |
Remove unused include statements or unused definitions. | |||||
2022-04-18 | Boring Old Deletes | Jeffrey | 4 | -56/+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-10 | Fee changes from ArticMine | moneromooo-monero | 12 | -44/+306 | |
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-06 | CMake: Add missing headers via monero_find_all_headers macro | mj-xmr | 15 | -138/+15 | |
2022-04-05 | Make RPC server functions that read db thread safe | j-berman | 1 | -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-05 | bulletproofs+: some minor cleanup from vtnerd's review | moneromooo-monero | 1 | -11/+2 | |
2022-04-05 | store outPk/8 in the tx for speed | moneromooo-monero | 4 | -7/+29 | |
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-05 | ringct: port some of vtnerd's review changes from BP+ to BP | moneromooo-monero | 1 | -13/+11 | |
2022-04-05 | ringct: a few minor optimizations from review | moneromooo-monero | 1 | -18/+15 | |
2022-04-05 | plug bulletproofs plus into consensus | moneromooo-monero | 15 | -135/+492 | |
2022-04-04 | Updates from security audit | Sarang Noether | 1 | -2/+10 | |
https://suyash67.github.io/homepage/assets/pdfs/bulletproofs_plus_audit_report_v1.1.pdf | |||||
2022-04-04 | Precompute initial transcript hash | Sarang Noether | 1 | -13/+11 | |
2022-04-04 | Bulletproofs+ | Sarang Noether | 5 | -2/+1223 | |
2022-03-30 | Eliminate dependence on boost::interprocess #8223 | Jeffrey | 3 | -11/+9 | |
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-29 | wallet2: decrease the amount of data exchanged for output export | moneromooo-monero | 2 | -10/+167 | |
2022-03-13 | wallet_rpc_server: support regex for get_accounts tag | reemuru | 2 | -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-13 | replace erciccione's seednode with one on haveno's infrastructure | erciccione | 1 | -1/+1 | |
2022-03-11 | wallet_rpc_server: fix make_integrated_address with no payment id | moneromooo-monero | 1 | -6/+0 | |
2022-03-10 | Remove footgun doc comment in miner TX validation | Luke Parker | 1 | -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-10 | Make the wallet name optional when locked. | Norman Moeschter | 4 | -0/+38 | |
2022-03-04 | Compil. time: cryptonote_core minus portable_storage header | mj-xmr | 1 | -1/+0 | |
2022-03-04 | Copyright: Update to 2022 | mj-xmr | 403 | -403/+458 | |
2022-03-01 | wallet2: update stagenet rollback blocks | selsta | 1 | -4/+4 | |
2022-02-24 | simplewallet: add option for exporting tx keys | reemuru | 1 | -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-22 | multisig key exchange update and refactor | koe | 25 | -822/+1945 | |
2022-02-19 | Fixes: Don't require --rpc-login with --rpc-access-control-origins #8168 | Jeffrey | 1 | -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-19 | crypto: fix constant randomx exceptions in large page allocator | moneromooo-monero | 1 | -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-07 | rpc: add explicit restricted flag to /get_info | tobtoht | 2 | -1/+4 | |
2022-01-31 | Balance includes unconfirmed transfers to self | woodser | 1 | -0/+13 | |
2022-01-25 | fix ge_p3_is_point_at_infinity(), which is evaluating field elements that ↵ | koe | 3 | -10/+46 | |
haven't been reduced by the field order | |||||
2022-01-17 | support authentication in monero-wallet-rpc set_daemon | woodser | 2 | -2/+10 | |
2022-01-04 | Update net_node.inl | Gingeropolous | 1 | -3/+3 | |
2021-12-24 | wallet inits cache if file and blob missing | woodser | 1 | -4/+5 | |
2021-11-30 | `make_uri` disallows standalone payment ids | woodser | 1 | -6/+2 | |
2021-11-20 | Add calcpow RPC | Howard Chu | 5 | -5/+73 | |
Calculate PoW hash for a block candidate | |||||
2021-11-16 | cryptonote_core: fix unused lambda warning | selsta | 1 | -1/+1 | |
2021-11-12 | device_ledger: fix incorrect macro | selsta | 1 | -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-10 | account info text alignment | im | 1 | -2/+2 | |
2021-11-05 | Avoid unnecessary 'Invalid hashing blob' error message | rbrunner7 | 1 | -1/+6 | |
2021-11-03 | device: fix ledger error strings, add human friendly messages | selsta | 1 | -7/+3 | |
2021-11-01 | tx_pool: full tx revalidation on fork boundaries | moneromooo-monero | 2 | -45/+64 | |
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-10-30 | slow_hash: don't blow out Mac stack on ARM64 | Howard Chu | 1 | -16/+54 | |
2021-10-29 | crypto: fix typo in ifdef | selsta | 1 | -1/+1 | |
2021-10-24 | rpc: fix DoS vector in get_output_distribution | moneromooo-monero | 1 | -0/+15 | |
This will prevent people spending old pre-rct outputs using a stranger's node, which may be a good thing | |||||
2021-10-22 | socks: ignore any exceptions in shutdown/close | selsta | 1 | -2/+3 | |
2021-10-22 | wallet_api: enable set_strict_default_file_permissions | tobtoht | 2 | -1/+6 | |
2021-10-22 | epee: add missing header | selsta | 1 | -0/+1 | |
2021-10-21 | protocol: fix spurious rejection of downloaded blocks | moneromooo-monero | 1 | -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-20 | wallet2: remove 2 unused variables | selsta | 1 | -2/+0 | |
2021-10-19 | wallet2: fix key encryption when changing ask-password from 0/1 to 2 | moneromooo-monero | 2 | -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-11 | blockchain: fix pedantic assert | selsta | 1 | -0/+2 | |
2021-10-10 | simplewallet: fix incoming_transfers index error | selsta | 1 | -8/+6 | |
2021-10-10 | download: fix leak | moneromooo-monero | 1 | -1/+9 | |
A shared_ptr as by value capture will keep the object alive | |||||
2021-10-10 | ARMv8: detect AES support dynamically | Howard Chu | 1 | -35/+105 | |
2021-10-07 | Ledger: member 'mode' was shadowing that of base class | mj-xmr | 1 | -2/+0 | |
2021-10-04 | Decrease the "recent spend window" in gamma re-select to 15 blocks | j-berman | 1 | -1/+1 | |
- combined with patching integer truncation (#7798), this gets the algorithm marginally closer to mirroring empirically observed output ages - 50 was originally chosen assuming integer truncation would remain in the client for that client release version. But patching integer truncation causes the client to select more outputs in the 10-100 block range, and therefore the benefit of choosing a larger recent spend window of 50 has less merit - 15 seems well-suited to cover the somewhat sizable observable gap in the early window of blocks | |||||
2021-09-22 | LMDB: fix deadlock in resized detection | Howard Chu | 2 | -3/+13 | |
2021-09-20 | rpc: Fix get_transactions failing when not found | Nathan Dorfman | 1 | -2/+14 | |
2021-09-20 | node_server: fix race condition | anon | 4 | -16/+53 | |
2021-09-15 | rpc: don't set error code as status string | selsta | 1 | -2/+2 | |
2021-09-12 | Fix precision of average_output_time | j-berman | 1 | -7/+1 | |
The fix as suggested by <jberman> on IRC. Before the fix, it would truncate 1.9 to 1 skewing the output selection. | |||||
2021-09-11 | RPC and ZeroMQ APIs to support p2pool | SChernykh | 18 | -24/+393 | |
Adds the following: - "get_miner_data" to RPC API - "json-miner-data" to ZeroMQ subscriber contexts Both provide the necessary data to create a custom block template. They are used by p2pool. Data provided: - major fork version - current height - previous block id - RandomX seed hash - network difficulty - median block weight - coins mined by the network so far - mineable mempool transactions | |||||
2021-09-08 | UB: virtual methods in destructor at Trezor | mj-xmr | 1 | -2/+2 | |
2021-09-08 | LMDB: protection against UB, by not calling virtual methods from destructor | mj-xmr | 1 | -5/+5 | |
2021-09-07 | UB: Not calling virtual method in destructor of WalletImpl | mj-xmr | 1 | -1/+1 | |
2021-09-03 | external: remove unbound submodule | selsta | 1 | -1/+1 | |
2021-08-28 | wallet: fix unused lambda capture warning | selsta | 1 | -1/+1 | |
2021-08-27 | wallet_rpc_server: fix help text remaining bold | selsta | 1 | -1/+2 | |
2021-08-26 | Wallet2: fix optimize-coinbase for p2pool payouts | SChernykh | 1 | -4/+5 | |
RefreshOptimizeCoinbase was an optimization to speed up scanning of coinbase transactions before RingCT (tx version 2) where they split miner reward into multiple denominations, all to the same wallet. When RingCT was introduced, all coinbase transactions became 1 output only, so this optimization does nothing now. With p2pool, this optimization will skip scanning p2pool payouts because they use more than 1 output in coinbase transaction. Fix it by applying this optimization only to pre-RingCT transactions (version < 2). | |||||
2021-08-20 | daemon: allow proxy configuration | anon | 12 | -11/+61 | |
Co-authored-by: selsta <selsta@sent.at> Co-authored-by: tobtoht <thotbot@protonmail.com> | |||||
2021-08-20 | monero-wallet-rpc: Prevent --password-file from being used with --wallet-dir | Kermit Alexander II | 4 | -4/+19 | |
2021-08-19 | Protect client from divide by 0 caused by integer truncation | j-berman | 1 | -0/+6 | |
2021-08-19 | Apply gamma distr from chain tip when selecting decoys | j-berman | 1 | -0/+31 | |
- matches the paper by Miller et al to apply the gamma from chain tip, rather than after unlock time - if the gamma produces an output more recent than the unlock time, the algo packs that output into one of the first 50 spendable blocks, respecting the block density factor | |||||
2021-08-19 | ringct: silence unused variable warning | selsta | 1 | -1/+1 | |
2021-08-19 | Device: remove unused and incorrect non-default constructor | mj-xmr | 1 | -1/+0 | |
2021-08-19 | wallet_api: add make_uri | tobtoht | 3 | -0/+7 | |
2021-08-11 | Make sure node returns to wallet that real output is unlocked | j-berman | 1 | -1/+2 | |
2021-08-05 | p2p: remove blocked addresses/hosts from peerlist | moneromooo-monero | 3 | -15/+44 | |
2021-08-03 | trezor: try empty passphrase first | Dusan Klinec | 6 | -11/+103 | |
- Try empty passphrase first when opening a wallet, as all Trezors will have passphrase enabled by default by Trezor Suite by default. This feature enables easier access to all users using disabled passphrase (or empty passhprase) - If wallet address differs from device address with empty passphrase, another opening attempt is made, without passphrase suppression, so user can enter his passhprase if using some. In this scenario, nothing changes to user, wallet opening just consumes one more call to Trezor (get wallet address with empty passphrase) - also change how m_passphrase is used. Previous version did not work well with recent passphrase entry mechanism change (made in Trezor), thus this commit fixes the behaviour). | |||||
2021-08-02 | Fix describe_transfer for multiple txes in a txset | Alex Opie | 2 | -10/+54 | |
This ensures each list of recipients is only the recipients for one transaction. It also adds a new field "summary" that describes the txset as a whole. Fixes #7344 | |||||
2021-07-29 | Quicker resource cleanup on p2p socks timeout | Lee *!* Clagett | 2 | -0/+12 | |
2021-07-28 | blocks: fix cmake syntax | selsta | 1 | -1/+1 | |
2021-07-27 | Daemon: Update average block size table | rbrunner7 | 1 | -2/+6 | |
2021-07-19 | wallet_api: expose offline mode status | rating89us | 3 | -0/+7 | |
2021-07-18 | Fixed json serialization of rct::RCTTypeNull | SChernykh | 1 | -6/+12 | |
rct::RCTTypeNull doesn't have these fields (ecdhInfo, outPk, txnFee). | |||||
2021-07-15 | wallet2: chunk get_outs.bin calls to avoid sanity limits | moneromooo-monero | 1 | -8/+20 | |
2021-07-15 | rpc: source file extensions must be explicit (cmake warning) | selsta | 1 | -1/+1 | |
2021-07-14 | wallet2: Don't auto lock device on process parsed blocks | tobtoht | 1 | -2/+1 | |
2021-07-14 | wallet: rephrase error message on invalid device address | Dusan Klinec | 1 | -1/+1 | |
2021-07-14 | fix #7784 - deinit wallet in wallet dtor | Dusan Klinec | 1 | -3/+6 | |
2021-07-13 | cmake: fix undefined symbols and multiple definitions | anon | 5 | -16/+62 | |
2021-07-10 | device_trezor_base: fix typo | anon | 1 | -1/+1 | |
2021-07-06 | Doc: Update blockchain stats with review comments | mj-xmr | 1 | -2/+4 | |
2021-07-05 | wallet_api: getPassword | tobtoht | 3 | -0/+7 | |
2021-06-27 | trezor: add #if for ByteSizeLong | selsta | 1 | -0/+4 | |
Turns out Ubuntu 18.04 ships with an old protobuf version. | |||||
2021-06-24 | wallet_api: get bytes sent/received | tobtoht | 3 | -0/+19 | |
2021-06-24 | simplewallet: don't truncate integ. address in export_transfers | selsta | 1 | -2/+2 | |
2021-06-23 | wallet_api: fix typo in exportKeyImages | selsta | 1 | -1/+1 | |
2021-06-21 | protocol: fix delayed "you are now synchronized..." message | moneromooo-monero | 1 | -3/+4 | |
2021-06-20 | doc: update IRC references to Libera | fdov | 1 | -1/+1 | |
2021-06-18 | add singapore.node.xmr.pm to seed nodes | lza_menace | 1 | -0/+4 | |
2021-06-15 | provide key images of spent outputs in wallet rpc | woodser | 3 | -9/+39 | |
2021-06-11 | CMake: strip targets (optional) with -D STRIP_TARGETS=ON | mj-xmr | 1 | -0/+1 | |
2021-06-11 | trezor: fix potential use of uninitialized memory | moneromooo-monero | 1 | -2/+7 | |
CID 1446575 | |||||
2021-06-08 | wallet/api: remove Bitmonero namespace alias | selsta | 16 | -38/+0 | |
2021-06-08 | wallet_api: address_book: don't lose pid on setDescription | tobtoht | 1 | -1/+1 | |
2021-06-04 | wallet2: refresh: check error and throw before potentially breaking out of loop | tobtoht | 1 | -8/+9 | |
2021-06-04 | wallet_api: signMessage: add sign with subaddress | tobtoht | 3 | -4/+19 | |
2021-06-04 | ledger: don't lock for software device | tobtoht | 1 | -3/+2 | |
2021-06-04 | wallet_api: reconnectDevice | tobtoht | 3 | -0/+21 | |
2021-06-04 | ledger: use software device if we have view key | tobtoht | 2 | -6/+13 | |
2021-06-04 | wallet: Reset RPC Pay ID on node switch | tobtoht | 1 | -0/+3 | |
RPC pay client ID is sent with each RPC request, set a new secret every time we switch nodes to mitigate trivial correlation | |||||
2021-06-04 | wallet_api: move adjust_mixin call within try block | tobtoht | 1 | -8/+3 | |
2021-05-18 | support freeze, thaw, and frozen in wallet rpc | woodser | 3 | -1/+154 | |
2021-05-14 | CMake: glob missing headers for wallet2 | mj-xmr | 1 | -12/+1 | |
2021-05-13 | trezor: deprecated ByteSize -> ByteSizeLong | selsta | 1 | -1/+1 | |
2021-05-08 | Warnings: unused variable in core/blockchain.cpp | mj-xmr | 1 | -1/+1 | |
2021-05-02 | Warnings: unused var at cryptonote_tx_utils.cpp | mj-xmr | 1 | -1/+3 | |
2021-04-28 | cmake: fix non portable code | selsta | 1 | -9/+21 | |
2021-04-28 | cmake: set xcode file type | selsta | 1 | -0/+1 | |
2021-04-27 | cmake: wallet_api doesn't need wallet_merged | selsta | 1 | -41/+0 | |
2021-04-27 | cmake: set 3.5 as minimum version | selsta | 2 | -2/+2 | |
2021-04-27 | clang: fix -Wrange-loop-analysis warnings | selsta | 1 | -1/+1 | |
2021-04-26 | blockchain: speed up repeated pops (mostly in tests) | moneromooo-monero | 1 | -1/+4 | |
The heavy rolling median reset only has to be performed after all blocks are popped | |||||
2021-04-25 | Wallet2: Update 'approximate_testnet_rolled_back_blocks' | rbrunner7 | 1 | -1/+1 | |
2021-04-24 | epee linkage dynamic; move monero_add_library to main CMakeLists.txt | mj-xmr | 1 | -24/+0 | |
2021-04-23 | wallet2: Fix rescan_bc keep_ki option | Nathan Dorfman | 3 | -23/+28 | |
2021-04-22 | wallet_api: import / export output function | tobtoht | 3 | -0/+77 | |
2021-04-19 | add documentation for monero-blockchain-stats | donkeydonkey | 1 | -0/+54 | |
2021-04-17 | protocol: remove unreachable code | moneromooo-monero | 1 | -1/+1 | |
2021-04-16 | Split epee/string_tools.h and encapsulate boost::lexical_cast | mj-xmr | 10 | -2/+11 | |
2021-04-16 | Revert "Merge pull request #7136" | luigi1111 | 8 | -34/+53 | |
This reverts commit 63c7ca07fba2f063c760f786a986fb3e02fb040e, reversing changes made to 2218e23e84a89e9a1e4c0be5d50f891ab836754f. | |||||
2021-04-16 | net_node: add seed node | selsta | 1 | -0/+3 | |
2021-04-15 | rpc: send confirmations in get_transactions result | moneromooo-monero | 3 | -5/+19 | |
if the wallet does it, it would get a wrong result (possibly even negative) if its local chain is not synced up to the daemon's yet | |||||
2021-04-07 | monero-wallet-cli: improve error message when tx amount is zero | Elliot Wirrick | 6 | -8/+30 | |
2021-04-05 | expose set_offline to wallet api | benevanoff | 3 | -0/+12 | |
2021-03-30 | p2p: allow CIDR notation in DNS blocklist | moneromooo-monero | 1 | -5/+12 | |
2021-03-28 | Reduce compilation time of epee/portable_storage_template_helper.h | mj-xmr | 18 | -2/+24 | |
2021-03-25 | wallet2: fix unlocked mixup in light wallet mode | moneromooo-monero | 1 | -2/+2 | |
2021-03-25 | db_lmdb: catch exceptions testing for mmap support | moneromooo-monero | 1 | -1/+2 | |
Turns out at least one arch (armel based) does not have unique_path implemented and throws | |||||
2021-03-24 | blockchain_db: harden code against invalid input types | moneromooo-monero | 1 | -9/+2 | |
If an invalid input type were to get to this, the code could remove key images that might be present already in the chain, which could allow a double spend, even if this is impossible with the current code. Reported by KeyboardWarrior. | |||||
2021-03-22 | cryptonote_protocol_handler: fix race condition | anon | 2 | -27/+43 | |
2021-03-19 | blockchain_import: fix wrong reported block/tx hashes on error | moneromooo-monero | 1 | -5/+11 | |
2021-03-18 | core: speed up print_coinbase_tx_sum | moneromooo-monero | 4 | -12/+14 | |
It only needs to parse the tx headers, not the full tx data | |||||
2021-03-12 | wallet_api: add isDeterministic() | tobtoht | 3 | -0/+12 | |
2021-03-12 | wallet_api: add seed_offset param to seed() | tobtoht | 3 | -4/+4 | |
2021-03-06 | wallet_rpc_server: set seed language in generate_from_keys | moneromooo-monero | 4 | -18/+26 | |
Also sanity check language name | |||||
2021-03-05 | fix serialization being different on mac | moneromooo-monero | 8 | -26/+63 | |
On Mac, size_t is a distinct type from uint64_t, and some types (in wallet cache as well as cold/hot wallet transfer data) use pairs/containers with size_t as fields. Mac would save those as full size, while other platforms would save them as varints. Might apply to other platforms where the types are distinct. There's a nasty hack for backward compatibility, which can go after a couple forks. | |||||
2021-03-04 | return output key for incoming transfers | benevanoff | 2 | -1/+4 | |
2021-03-03 | trezor: simplify recognition of integrated addresses | Dusan Klinec | 1 | -14/+1 | |
now it is possible to simplify integrated addresses recognition using transaction destination info directly fixes https://github.com/monero-project/monero-gui/issues/3346 | |||||
2021-03-01 | wallet_rpc: add scan_tx | tobtoht | 3 | -1/+58 | |
2021-02-20 | wallet_rpc_payments: implement multithreading | gdmojo | 4 | -40/+76 | |
2021-02-17 | monero-wallet-cli: Added command scan_tx | Horia Mihai David | 4 | -1/+89 | |
To implement this feature, the wallet2::scan_tx API was implemented. | |||||
2021-02-15 | p2p: add --max-connections-per-ip daemon option | moneromooo-monero | 3 | -3/+10 | |
Helps daemons behind a proxy get more than one connection. Defaults to 1 (no change) | |||||
2021-02-15 | rpc: fix some error return codes/status | moneromooo-monero | 2 | -23/+33 | |
Some RPC return an error string in status, and the code must return true on error (with a status string). | |||||
2021-02-13 | Store RPC SSL key/cert for consistent authentication between runs | Lee Clagett | 1 | -2/+23 | |
2021-02-11 | Honor LARGE_PAGES flag in randomx umask | Howard Chu | 1 | -10/+18 | |
2021-02-09 | New add_aux_pow RPC to support merge mining | moneromooo-monero | 12 | -1/+494 | |
2021-02-09 | Remove unused variables in monero codebase | Kevin Barbour | 23 | -67/+12 | |
There are quite a few variables in the code that are no longer (or perhaps never were) in use. These were discovered by enabling compiler warnings for unused variables and cleaning them up. In most cases where the unused variables were the result of a function call the call was left but the variable assignment removed, unless it was obvious that it was a simple getter with no side effects. | |||||
2021-02-06 | Reduce compilation time of epee/portable_storage.h | mj-xmr | 2 | -0/+3 | |
2021-01-28 | Remove copies from foreach loops (thanks to Clang) | Lee Clagett | 6 | -7/+7 | |
2021-01-28 | Removing unused namespace alias | Lee Clagett | 1 | -2/+0 | |
2021-01-28 | Fix monerod --rpc-ssl disabled | Lee Clagett | 1 | -1/+1 | |
2021-01-25 | Attempt to carve the fee from a partial payment early | Alex Opie | 1 | -20/+34 | |
Do this for both the estimate and actual fee. #7337 | |||||
2021-01-25 | Stop adding more outputs than bulletproof allows | Alex Opie | 1 | -7/+35 | |
If more outputs are requested, they are split across multiple transactions. #7322 | |||||
2021-01-23 | Improve cryptonote (block and tx) binary read performance | Lee Clagett | 22 | -200/+143 | |
2021-01-21 | Simplewallet.cpp: Add export_outputs help | SomaticFanatic | 1 | -1/+1 | |
See #6547 | |||||
2021-01-21 | bootstrap_daemon: proxy configuration support | xiphon | 9 | -28/+126 | |
2021-01-20 | device_trezor: add redundant check | anon | 1 | -1/+1 | |
2021-01-20 | device_trezor: wipe string fields properly | anon | 1 | -20/+9 | |
2021-01-19 | Remove payload copy in all outgoing p2p messages | Lee Clagett | 8 | -53/+34 | |
2021-01-16 | Remove payload copy in all outgoing p2p messages | Lee Clagett | 8 | -53/+34 | |
2021-01-13 | simplewallet: allow setting --restore-height 0 | selsta | 1 | -1/+1 | |
2021-01-12 | Revert "fix accessing an network address in a deleted context" | selsta | 2 | -15/+9 | |
This reverts commit 4e74385a1ae9eae4ae9e8d155dfd96978eb10e7a. | |||||
2021-01-08 | remove obsolete pruning debug code | moneromooo-monero | 4 | -45/+0 | |
2021-01-07 | wallet_rpc_server: don't abort on initial refresh failure | xiphon | 1 | -1/+8 | |
2021-01-04 | p2p: make REQUEST_SUPPORT_FLAGS optional, pass flags in node data | moneromooo-monero | 2 | -8/+15 | |
removes a back and forth on connect, and the RPC can be removed once all peers have updated | |||||
2021-01-03 | add a max levin packet size by command type | moneromooo-monero | 4 | -0/+44 | |
2021-01-03 | fix accessing an network address in a deleted context | moneromooo-monero | 2 | -9/+15 | |
Both drop_connection and add_host_fail can drop the connection, which invalidates the context, and thus the address it contains. Thanks to wfaressuissia[m] for lots of help and prodding when debugging this | |||||
2021-01-03 | Only INFO log for short seed words with ALLOW_SHORT_WORDS active | rbrunner7 | 1 | -1/+1 | |
2021-01-02 | blockchain: lock access to m_blocks_hash_of_hashes | moneromooo-monero | 1 | -0/+2 | |
it is accessed both when adding and when prevalidating a set of new hashes from a peer | |||||
2021-01-02 | protocol: handle receiving a block hash we've not added yet | moneromooo-monero | 1 | -4/+9 | |
2021-01-02 | wallet_api: store fee for incoming txs in history | Ben Evanoff | 1 | -0/+1 | |
2021-01-01 | p2p: only log to global when a blocked IP is not already blocked | moneromooo-monero | 1 | -1/+8 | |
2021-01-01 | p2p: fix cubic selection in filtered peer list | moneromooo | 1 | -2/+2 | |
Integer quantization biased the picks a lot (leading some indices to never be selected) | |||||
2021-01-01 | p2p: ignore empty IP from DNS block list | moneromooo-monero | 1 | -0/+2 | |
ie, if the list ends in ; | |||||
2020-12-31 | Header row for peer list in sync_info | Denis Goddard | 1 | -0/+1 | |
2020-12-31 | protocol: more sanity checks in new chain block hashes | moneromooo-monero | 5 | -18/+80 | |
2020-12-31 | simplewallet: Add input file parameter to sign_transfer | Steff Richards | 1 | -5/+20 | |
2020-12-31 | p2p: fix set_peer_just_seen ignoring last_seen | moneromooo | 1 | -4/+5 | |
2020-12-31 | p2p: fix deadlock banning while updating peer lists | moneromooo | 1 | -0/+1 | |
2020-12-30 | protocol: fix wrong command in logs | moneromooo-monero | 1 | -9/+1 | |
this is not a levin packet, this is just its payload | |||||
2020-12-30 | protocol: don't reset last request time on an idle timer | moneromooo-monero | 1 | -1/+1 | |
this prevents losing time of "idle time" for a peer, which could otherwise be reset by another timed sync command from the peer | |||||
2020-12-29 | rpc: limit the number of txes for get_blocks.bin | moneromooo-monero | 11 | -22/+32 | |
2020-12-27 | protocol: fix false positives dropping peers | moneromooo-monero | 1 | -23/+21 | |
it'd trigger on reorgs |