aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-05-10Merge pull request #8321luigi11111-0/+2
7d6c748 Set hf v15 testnet fork heights (j-berman)
2022-05-10Merge pull request #8302luigi11118-8/+8
41da2fe Update copyright to 2022 for Hardfork files (Akrit)
2022-05-10Merge pull request #8300luigi11111-1/+1
070e41d Change Github to GitHub (Abdullah)
2022-05-10Merge pull request #8293luigi11111-3/+3
4f08bcd refactor(bp+): save one inversion, use sc_muladd (Dusan Klinec)
2022-05-10Merge pull request #8277luigi11114-28/+6
baee2c0 Preserve commitment format inside transactions (kayabaNerve)
2022-05-10Merge pull request #8262luigi11111-33/+62
268a039 Optimized keccak implementation (SChernykh)
2022-05-10Merge pull request #8220luigi11116-148/+276
0d6ecb1 multisig: add post-kex verification round to check that all participants have completed the multisig address (koe)
2022-05-09Set hf v15 testnet fork heightsj-berman1-0/+2
2022-04-29multisig: add post-kex verification round to check that all participants ↵koe6-148/+276
have completed the multisig address
2022-04-29Update copyright to 2022 for Hardfork filesAkrit8-8/+8
Update Makefile and LICENSE
2022-04-27Change "Github" to "GitHub"Abdullah1-1/+1
2022-04-26refactor(bp+): save one inversion, use sc_muladdDusan Klinec1-3/+3
2022-04-25Merge pull request #8275luigi11112-0/+3
9209880 add a sanity check to RPC input data size (moneromooo-monero)
2022-04-25Merge pull request #8249luigi11111-1/+0
a14fdf8 Remove /include (Jeffrey)
2022-04-25Merge pull request #8178luigi11115-74/+25
5d388eb Bump ring size to 16 for v15 & remove set default in wallet cli (j-berman)
2022-04-21Preserve commitment format inside transactionsLuke Parker4-28/+6
2022-04-21add a sanity check to RPC input data sizemoneromooo-monero2-0/+3
reported by m31007
2022-04-19Merge pull request #8254luigi11111-1/+1
9df7179 wallet2: use BP+ for cold signing (moneromooo-monero)
2022-04-19Merge pull request #8245luigi11111-1/+1
3593a98 simplewallet: fix integrated_address output string (selsta)
2022-04-19Merge pull request #8232luigi11111-0/+1
0f7b20a Added support for Ledger Nano S Plus (Mathias Herberts)
2022-04-19Merge pull request #8061luigi111125-210/+562
ea87b30 Add view tags to outputs to reduce wallet scanning time (j-berman)
2022-04-18Bump ring size to 16 for v15 & remove set default in wallet clij-berman5-74/+25
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-18Factor out move_it_backward from misc_language.hJeffrey1-8/+15
Relevant commit from old PR: 330df2952cb2863a591158b984c0fb7f652887ac
2022-04-18Move copyable_atomic into connection_contextJeffrey1-4/+35
Relevant commit from old PR: bd0a5119957d3ef9130a0b82599e1696995ef235
2022-04-18Merge functionality of misc_os_dependent into time_helper.hJeffrey2-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-18Add Include statementsJeffrey2-0/+2
2022-04-18Trimming FatJeffrey2-2/+0
Remove unused include statements or unused definitions.
2022-04-18Boring Old DeletesJeffrey4-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-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-berman25-210/+562
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-10wallet2: use BP+ for cold signingmoneromooo-monero1-1/+1
reported by ukoehb
2022-04-10Fee changes from ArticMinemoneromooo-monero12-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-09Remove /includeJeffrey1-1/+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-08simplewallet: fix integrated_address output stringselsta1-1/+1
2022-04-06CMake: Add missing headers via monero_find_all_headers macromj-xmr15-138/+15
2022-04-06Merge pull request #8223luigi11113-11/+9
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 #8205luigi11111-1/+0
0d6fce8 Compil. time: cryptonote_core minus portable_storage header (mj-xmr)
2022-04-06Merge pull request #8197luigi1111403-403/+458
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 #7170luigi111119-142/+1734
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-monero4-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-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-monero15-135/+492
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 Noether5-2/+1223
2022-03-31Added support for Ledger Nano S PlusMathias Herberts1-1/+2
2022-03-30Eliminate dependence on boost::interprocess #8223Jeffrey3-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-29wallet2: decrease the amount of data exchanged for output exportmoneromooo-monero2-10/+167
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 #8169luigi11112-1/+4
5e201fe rpc: add explicit restricted flag to /get_info (tobtoht)
2022-03-18Merge pull request #8158luigi11111-0/+13
e5000a9 Balance includes unconfirmed transfers to self (woodser)
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-xmr1-1/+0
2022-03-04Copyright: Update to 2022mj-xmr403-403/+458
2022-03-02Merge pull request #8145luigi11112-1/+9
fb5b2b3 support authentication in monero-wallet-rpc set_daemon (woodser)
2022-03-02Merge pull request #8052luigi11113-10/+46
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 #7877luigi111125-822/+1945
e08abaa multisig key exchange update and refactor (koe)
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 refactorkoe25-822/+1945
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-07rpc: add explicit restricted flag to /get_infotobtoht2-1/+4
2022-01-31Balance includes unconfirmed transfers to selfwoodser1-0/+13
2022-01-25fix ge_p3_is_point_at_infinity(), which is evaluating field elements that ↵koe3-10/+46
haven't been reduced by the field order
2022-01-24Merge pull request #8130luigi11111-3/+3
1051276 Update net_node.inl (Gingeropolous)
2022-01-24Merge pull request #8123luigi11111-4/+5
4446cc8 wallet inits cache if file and blob missing (woodser)
2022-01-24Merge pull request #8044luigi11111-1/+6
a02b342 Avoid unnecessary 'Invalid hashing blob' error message (rbrunner7)
2022-01-17support authentication in monero-wallet-rpc set_daemonwoodser2-2/+10
2022-01-04Update net_node.inlGingeropolous1-3/+3
2021-12-24wallet inits cache if file and blob missingwoodser1-4/+5
2021-11-30Merge pull request #8067luigi11111-6/+2
53be72c make_uri disallows standalone payment ids (woodser)
2021-11-30Merge pull request #8057luigi11111-4/+4
1efe624 device_ledger: fix incorrect macro (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-26Merge pull request #8083luigi11111-0/+15
e8e507f rpc: fix DoS vector in get_output_distribution (moneromooo-monero)
2021-11-26Merge pull request #8070luigi11115-5/+73
a4ebec9 Add python method (Howard Chu) 0221b01 Add calcpow RPC (Howard Chu)
2021-11-20Add calcpow RPCHoward Chu5-5/+73
Calculate PoW hash for a block candidate
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 #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 #7169luigi11112-45/+64
bbe3b27 tx_pool: full tx revalidation on fork boundaries (moneromooo-monero)
2021-11-10account info text alignmentim1-2/+2
2021-11-05Avoid unnecessary 'Invalid hashing blob' error messagerbrunner71-1/+6
2021-11-03device: fix ledger error strings, add human friendly messagesselsta1-7/+3
2021-11-01tx_pool: full tx revalidation on fork boundariesmoneromooo-monero2-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-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 #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-25Merge pull request #8019luigi11111-0/+1
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 #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 #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-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 headerselsta1-0/+1
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-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-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 #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 #7799luigi11111-7/+1
76542ea Fix precision of average_output_time (j-berman)
2021-10-11Merge pull request #7975luigi11111-0/+2
48a0997 blockchain: fix pedantic assert (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 #7874luigi11114-16/+53
9154883 node_server: fix race condition (anon) 8922f96 node_server: add race condition demo (anon)
2021-10-11Merge pull request #7793luigi11116-11/+103
13a8a57 trezor: try empty passphrase first (Dusan Klinec)
2021-10-11blockchain: fix pedantic assertselsta1-0/+2
2021-10-10simplewallet: fix incoming_transfers index errorselsta1-8/+6
2021-10-10download: fix leakmoneromooo-monero1-1/+9
A shared_ptr as by value capture will keep the object alive
2021-10-10ARMv8: detect AES support dynamicallyHoward Chu1-35/+105
2021-10-07Ledger: member 'mode' was shadowing that of base classmj-xmr1-2/+0
2021-10-04Decrease the "recent spend window" in gamma re-select to 15 blocksj-berman1-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-23Merge pull request #7891luigi111118-24/+393
dfee15e RPC and ZeroMQ APIs to support p2pool (SChernykh)
2021-09-23Merge pull request #7890luigi11112-0/+12
2a8a511 Quicker resource cleanup on p2p socks timeout (Lee *!* Clagett)
2021-09-22LMDB: fix deadlock in resized detectionHoward Chu2-3/+13
2021-09-20rpc: Fix get_transactions failing when not foundNathan Dorfman1-2/+14
2021-09-20node_server: fix race conditionanon4-16/+53
2021-09-15rpc: don't set error code as status stringselsta1-2/+2
2021-09-12Fix precision of average_output_timej-berman1-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-11RPC and ZeroMQ APIs to support p2poolSChernykh18-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-09Merge pull request #7899luigi11111-1/+1
cd76eb7 wallet: fix unused lambda capture warning (selsta)
2021-09-09Merge pull request #7898luigi11111-1/+2
f353c29 wallet_rpc_server: fix help text remaining bold (selsta)
2021-09-09Merge pull request #7883luigi11111-1/+1
d749e0d ringct: silence unused variable warning (selsta)
2021-09-09Merge pull request #7875luigi11111-1/+0
15936bf Device: remove unused and incorrect non-default constructor (mj-xmr)
2021-09-09Merge pull request #7823luigi11114-4/+19
24d3d65 monero-wallet-rpc: Prevent --password-file from being used with --wallet-dir (Kermit Alexander II)
2021-09-09Merge pull request #7773 from selsta/unboundluigi11111-1/+1
external: remove unbound submodule
2021-09-09Merge pull request #7616luigi111112-11/+61
4ced092 daemon: allow proxy configuration (anon, selsta, tobtoht)
2021-09-09Merge pull request #7342luigi11111-20/+34
520ce1c Attempt to carve the fee from a partial payment early (lxop)
2021-09-08UB: virtual methods in destructor at Trezormj-xmr1-2/+2
2021-09-08LMDB: protection against UB, by not calling virtual methods from destructormj-xmr1-5/+5
2021-09-07UB: Not calling virtual method in destructor of WalletImplmj-xmr1-1/+1
2021-09-03external: remove unbound submoduleselsta1-1/+1
2021-08-28wallet: fix unused lambda capture warningselsta1-1/+1
2021-08-27wallet_rpc_server: fix help text remaining boldselsta1-1/+2
2021-08-26Wallet2: fix optimize-coinbase for p2pool payoutsSChernykh1-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-20Merge pull request #7878luigi11113-0/+7
a9aaa47 wallet_api: add make_uri (tobtoht)
2021-08-20Merge pull request #7849luigi11111-1/+2
6f15a0c Make sure node returns to wallet that real output is unlocked (j-berman)
2021-08-20Merge pull request #7845luigi11111-0/+6
e1af8dc Protect client from divide by 0 caused by integer truncation (j-berman)
2021-08-20Merge pull request #7821luigi11111-0/+31
da2955f Apply gamma distr from chain tip when selecting decoys (j-berman)
2021-08-20daemon: allow proxy configurationanon12-11/+61
Co-authored-by: selsta <selsta@sent.at> Co-authored-by: tobtoht <thotbot@protonmail.com>
2021-08-20monero-wallet-rpc: Prevent --password-file from being used with --wallet-dirKermit Alexander II4-4/+19
2021-08-19Protect client from divide by 0 caused by integer truncationj-berman1-0/+6
2021-08-19Apply gamma distr from chain tip when selecting decoysj-berman1-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-19ringct: silence unused variable warningselsta1-1/+1
2021-08-19Device: remove unused and incorrect non-default constructormj-xmr1-1/+0
2021-08-19wallet_api: add make_uritobtoht3-0/+7
2021-08-11Merge pull request #7811luigi11111-2/+6
3d3a671 Daemon: Update average block size table (rbrunner7)
2021-08-11Merge pull request #7809luigi11113-15/+44
7354ffb p2p: remove blocked addresses/hosts from peerlist (moneromooo-monero)
2021-08-11Merge pull request #7802luigi11113-0/+7
a3d2b71 wallet_api: expose offline mode status (rating89us)
2021-08-11Merge pull request #7800luigi11111-6/+12
b48074f Fixed json serialization of rct::RCTTypeNull (SChernykh)
2021-08-11Merge pull request #7795luigi11111-1/+1
87a0928 rpc: source file extensions must be explicit (cmake warning) (selsta)
2021-08-11Merge pull request #7786luigi11111-3/+6
9c6e094 fix #7784 - deinit wallet in wallet dtor (Dusan Klinec)
2021-08-11Make sure node returns to wallet that real output is unlockedj-berman1-1/+2
2021-08-05p2p: remove blocked addresses/hosts from peerlistmoneromooo-monero3-15/+44
2021-08-03trezor: try empty passphrase firstDusan Klinec6-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-02Merge pull request #7796luigi11111-8/+20
0c6e1d3 wallet2: chunk get_outs.bin calls to avoid sanity limits (moneromooo-monero)
2021-08-02Merge pull request #7790luigi11111-1/+1
bc8d764 wallet: rephrase error message on invalid device address (Dusan Klinec)
2021-08-02Merge pull request #7788luigi11111-2/+1
f5eb2ce wallet2: Don't auto lock device on process parsed blocks (tobtoht)
2021-08-02Merge pull request #7767luigi11112-10/+54
5fa1c90 Fix describe_transfer for multiple txes in a txset (Alex Opie)
2021-08-02Merge pull request #7757luigi11111-3/+4
d689b94 protocol: fix delayed 'you are now synchronized...' message (moneromooo-monero)
2021-08-02Merge pull request #7747luigi11111-8/+9
8cf95c8 wallet2: refresh: check error and throw before potentially breaking out of loop (tobtoht)
2021-08-02Fix describe_transfer for multiple txes in a txsetAlex Opie2-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-29Quicker resource cleanup on p2p socks timeoutLee *!* Clagett2-0/+12
2021-07-28blocks: fix cmake syntaxselsta1-1/+1
2021-07-27Merge pull request #7782luigi11111-1/+1
a48db50 device_trezor_base: fix typo (anon)
2021-07-27Merge pull request #7772luigi11111-2/+4
eda5c30 Doc: Update blockchain stats with review comments (mj-xmr)
2021-07-27Merge pull request #7745luigi11111-3/+2
d52d21b ledger: don't lock for software device (tobtoht)
2021-07-27Merge pull request #7744luigi11112-6/+13
ce40c33 ledger: use software device if we have view key (tobtoht)
2021-07-27Merge pull request #7740luigi11111-0/+3
8cea9d8 wallet: Reset RPC Pay ID on node switch (tobtoht)
2021-07-27Merge pull request #7698luigi11111-9/+21
7359d51 cmake: fix non portable code (selsta)