Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-09-14 | Merge pull request #2392 | Riccardo Spagni | 7 | -1/+20 | |
6ac61100 Add a --fluffy-blocks option to relay blocks as fluffy blocks (moneromooo-monero) | |||||
2017-09-14 | Merge pull request #2389 | Riccardo Spagni | 1 | -2/+3 | |
11818487 Use latest height for fork date estimate (Howard Chu) | |||||
2017-09-13 | wallet_rpc_server: fix index for newly added address book entry | moneromooo-monero | 1 | -1/+1 | |
2017-09-13 | core: sort ins and outs key key image and public key, respectively | moneromooo-monero | 2 | -6/+32 | |
This avoids leaking some small amount of information | |||||
2017-09-13 | common: add apply_permutation file and function | moneromooo-monero | 4 | -0/+108 | |
This algorithm is adapted from Raymond Chen's code: https://blogs.msdn.microsoft.com/oldnewthing/20170109-00/?p=95145 | |||||
2017-09-12 | Update wallet2.cpp for misspelling | Matthew Campassi | 1 | -1/+1 | |
Misspelling in wallet2.cpp | |||||
2017-09-12 | wallet: add encrypted seed functionality | moneromooo-monero | 6 | -5/+63 | |
This uses luigi1111's CN_Add method. See https://xmr.llcoins.net for details. | |||||
2017-09-12 | core: guard against exceptions in tx verification worker threads | moneromooo-monero | 1 | -2/+18 | |
2017-09-12 | Docs: C4 revisions as discussed in #2174 | anonimal | 1 | -25/+17 | |
2017-09-11 | Repo: remove in-tree VRP, link to single-policy VRP | anonimal | 2 | -143/+5 | |
2017-09-11 | wallet2: guard against daemon sending txes in the wrong order | moneromooo-monero | 1 | -12/+10 | |
2017-09-11 | rpc: order transactions in the order they were requested | moneromooo-monero | 1 | -7/+19 | |
2017-09-10 | utils: systemd: dir for pidfile with permissions | redfish | 1 | -2/+3 | |
monerod runs as user monero which does not have write permissions for /var/run. Use systemd's RuntimeDirectory feature to handle this. | |||||
2017-09-10 | readme.me again, fixed v2 fork info on table | Gingeropolous | 1 | -1/+1 | |
included increased fee free zone of 60 kb, changed data of v2 | |||||
2017-09-10 | wallet: fix --help and --version erroring out | moneromooo-monero | 1 | -15/+15 | |
2017-09-10 | README.md - update info for first fork | Gingeropolous | 1 | -1/+1 | |
Include change in blocktime | |||||
2017-09-10 | README.md - update fork table with fork height | Gingeropolous | 1 | -6/+7 | |
I added a column for fork height and included the september 2016 fork info | |||||
2017-09-10 | p2p: disable gray list housekeeping when an exclusive node is given | moneromooo-monero | 1 | -0/+2 | |
Exclusive nodes may be used for privacy reasons, and thus we don't want to connect to other nodes, even for checking connectivity. See https://github.com/monero-project/monero/issues/2346 | |||||
2017-09-09 | ITS#8728 fix MDB_VL32 freeing overflow page | Howard Chu | 1 | -0/+4 | |
Fix #2420 | |||||
2017-09-08 | rpc: get_txpool_backlog is now unrestricted | moneromooo-monero | 1 | -1/+1 | |
2017-09-08 | README.md: add instructions to fix core pattern | moneromooo-monero | 1 | -1/+3 | |
2017-09-08 | updated clarification bc_dyn_stats | Matthew Campassi | 1 | -1/+1 | |
updated clarification of required parameter for bc_dyn_stats | |||||
2017-09-08 | clarification bc_dyn_stats | Matthew Campassi | 1 | -1/+1 | |
clarification of required parameter for bc_dyn_stats | |||||
2017-09-08 | Silence more stupid gcc warnings | Howard Chu | 2 | -9/+9 | |
2017-09-08 | Fix AC power supply detection on Linux | Guillaume LE VAILLANT | 1 | -13/+0 | |
The /sys/class/power_supply/*/present file usually does not exist for AC power supplies. | |||||
2017-09-06 | update checkpoint hashes | Riccardo Spagni | 1 | -1/+1 | |
2017-09-06 | update hardfork table with height and version info | Gingeropolous | 1 | -2/+2 | |
2017-09-06 | update hardcoded checkpoints | Riccardo Spagni | 1 | -0/+2 | |
2017-09-06 | update checkpoints.dat | Riccardo Spagni | 1 | -0/+0 | |
2017-09-05 | Fix various oversights/bugs in ZMQ RPC server code | Thomas Winget | 15 | -216/+527 | |
- Add some RPC commands (and touch up a couple others) - some bounds checking - some better pointer management - const correctness and error handling -- Thanks @vtnerd for type help with serialization and CMake changes | |||||
2017-09-05 | json serialization for rpc-relevant monero types | Thomas Winget | 29 | -3/+4968 | |
Structured {de-,}serialization methods for (many new) types which are used for requests or responses in the RPC. New types include RPC requests and responses, and structs which compose types within those. # Conflicts: # src/cryptonote_core/blockchain.cpp | |||||
2017-09-05 | Refactor some things into more composable (smaller) functions | Thomas Winget | 2 | -73/+179 | |
This commit refactors some of the rpc-related functions in the Blockchain class to be more composable. This change was made in order to make implementing the new zmq rpc easier without trampling on the old rpc. New functions: Blockchain::get_num_mature_outputs Blockchain::get_random_outputs Blockchain::get_output_key Blockchain::get_output_key_mask_unlocked Blockchain::find_blockchain_supplement (overload) functions which previously had this functionality inline now call these functions as necessary. | |||||
2017-09-04 | Only check for upnp version if version is determined | Orestis Konstantinidis | 1 | -5/+5 | |
2017-09-04 | tx_pool: catch exceptions in LockedTXN dtor | moneromooo-monero | 1 | -1/+1 | |
This might prevent some calls to terminate when the LockedTXN dtor is called as part of stack unwinding caused by another exception in the first place. | |||||
2017-09-04 | dns_utils: remove a few obsolete things | moneromooo-monero | 1 | -4/+0 | |
2017-09-03 | Add a --fluffy-blocks option to relay blocks as fluffy blocks | moneromooo-monero | 7 | -1/+20 | |
Defaults to off, but fluffy blocks are forced enabled on testnet | |||||
2017-09-02 | Use latest height for fork date estimate | Howard Chu | 1 | -2/+3 | |
2017-09-02 | Merge pull request #2384 | Riccardo Spagni | 3 | -26/+27 | |
4e0e4e99 blockchain_import: warn for chunks over 500000, not 100000 (moneromooo-monero) 5b29e87f blockchain_import: properly cleanup core/db on exit (moneromooo-monero) e167c4d9 blockchain_import: do not error out on truncated files (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2374 | Riccardo Spagni | 1 | -0/+3 | |
e72e625e tx_pool: wrap tx meta updates in a LockedTXN (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2372 | Riccardo Spagni | 6 | -21/+89 | |
c867357a cryptonote_protocol: error handling on cleanup_handle_incoming_blocks (moneromooo-monero) ce901fcb Fix blockchain_import wedge on exception in cleanup_handle_incoming_blocks (moneromooo-monero) 84fa015e core: guard against exceptions in handle_incoming_{block,tx} (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2370 | Riccardo Spagni | 9 | -40/+40 | |
3d19ab70 Revert "Cleanup test impact of moving blockchain_db_types()" (Howard Chu) a95e460c move db specific options to BlockchainDB (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2364 | Riccardo Spagni | 1 | -0/+1 | |
63d8dddc cryptonote_protocol: remove old spans when received as old blocks (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2362 | Riccardo Spagni | 4 | -26/+106 | |
adce8ae4 simplewallet: new "fee" command to display fee information (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2342 | Riccardo Spagni | 1 | -0/+3 | |
2e338ca5 wallet2: account for huge testnet reorgs for estimating height (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2329 | Riccardo Spagni | 1 | -0/+2 | |
e3c4395a p2p: init hashes after deserializing a network address (moneromooo-monero) | |||||
2017-09-02 | Merge pull request #2316 | Riccardo Spagni | 2 | -5/+11 | |
0c6c3eb3 Silence stupid fallthru warning in gcc 7 (Howard Chu) | |||||
2017-09-02 | Merge pull request #2310 | Riccardo Spagni | 1 | -1/+1 | |
ea996f91 clarification of parameters for print_coinbase_tx_sum (Matthew Campassi) | |||||
2017-09-02 | Merge pull request #2309 | Riccardo Spagni | 3 | -20/+111 | |
d58700e0 WalletAPI: only allow trusted daemon when importing key images (Jaquee) 8a9bbd26 WalletAPI: copy wallet data when creating a view only wallet (Jaquee) d27fe32e wallet2: export/import wallet data functions (Jaquee) 225a25f3 import_key_images - allow importing without being connected to daemon (Jaquee) | |||||
2017-09-01 | blockchain_import: warn for chunks over 500000, not 100000 | moneromooo-monero | 3 | -4/+5 | |
We have a lot of 350000 byte blocks now. | |||||
2017-09-01 | blockchain_import: properly cleanup core/db on exit | moneromooo-monero | 1 | -19/+9 | |
2017-09-01 | blockchain_import: do not error out on truncated files | moneromooo-monero | 1 | -3/+13 | |
This will happen often when downloading from a live file | |||||
2017-09-01 | Rename m_listenning_port to m_listening_port | MaxXor | 2 | -7/+7 | |
2017-08-31 | monero-wallet-cli: New command 'wallet_info' improved | rbrunner7 | 1 | -5/+4 | |
2017-08-31 | DRY refactoring | Thomas Winget | 3 | -2/+14 | |
2017-08-31 | monero-wallet-cli: New command 'wallet_info' | rbrunner7 | 2 | -0/+12 | |
2017-08-30 | Do not create file when RPC user/pass is given and use file locking | Lee Clagett | 4 | -53/+101 | |
2017-08-30 | update miniupnpc | MaxXor | 25 | -159/+619 | |
2017-08-29 | Delete UPnP port mapping on exit | MaxXor | 2 | -43/+97 | |
2017-08-29 | tx_pool: wrap tx meta updates in a LockedTXN | moneromooo-monero | 1 | -0/+3 | |
2017-08-29 | simplewallet: new "fee" command to display fee information | moneromooo-monero | 4 | -26/+106 | |
including expected transaction backlog at different priorities | |||||
2017-08-29 | cryptonote_protocol: error handling on cleanup_handle_incoming_blocks | moneromooo-monero | 1 | -6/+34 | |
2017-08-29 | Fix blockchain_import wedge on exception in cleanup_handle_incoming_blocks | moneromooo-monero | 5 | -15/+47 | |
2017-08-29 | Revert "Cleanup test impact of moving blockchain_db_types()" | Howard Chu | 3 | -13/+0 | |
This reverts commit 3dd34a49efd2954b0a5eb020abd168d9379b98c4. | |||||
2017-08-29 | core: guard against exceptions in handle_incoming_{block,tx} | moneromooo-monero | 1 | -0/+8 | |
When one happens, cleanup must be called or the incoming tx lock will stay locked | |||||
2017-08-29 | move db specific options to BlockchainDB | moneromooo-monero | 6 | -27/+40 | |
Avoids common depending on blockchain_db, which can cause link errors. | |||||
2017-08-28 | cryptonote_protocol: remove old spans when received as old blocks | moneromooo-monero | 1 | -0/+1 | |
fixes getting those in a loop | |||||
2017-08-27 | Merge pull request #2349 | Riccardo Spagni | 3 | -3/+23 | |
1914c999 txpool: update db tx metadata when it changes (moneromooo) 4dbf29bd txpool: add tx size median to the pool stats (moneromooo) | |||||
2017-08-27 | Merge pull request #2347 | Riccardo Spagni | 2 | -6/+14 | |
5807529e blockchain: cap memory size of retrieved blocks (moneromooo-monero) c1b10381 rpc: decrease memory usage a bit in getblocks.bin (moneromooo-monero) | |||||
2017-08-26 | Merge pull request #2320 | Riccardo Spagni | 4 | -140/+93 | |
c656dd0e Fix refresh counter display (Howard Chu) c088d38a Simplify readline support (Howard Chu) | |||||
2017-08-26 | Merge pull request #2314 | Riccardo Spagni | 11 | -2/+61 | |
c22d22e2 Cleanup test impact of adding safesyncmode() method (Howard Chu) 9a859844 Toggle SAFE syncmode on and off automatically (Howard Chu) | |||||
2017-08-26 | Merge pull request #2313 | Riccardo Spagni | 14 | -192/+105 | |
3dd34a49 Cleanup test impact of moving blockchain_db_types() (Howard Chu) 80344740 More DB support cleanup (Howard Chu) 4c7f8ac0 DB cleanup (Howard Chu) | |||||
2017-08-26 | Merge pull request #2353 | Riccardo Spagni | 1 | -2/+3 | |
19393115 daemon: fix backlog estimating at max block size (moneromooo-monero) | |||||
2017-08-26 | Merge pull request #2355 | Riccardo Spagni | 11 | -3/+203 | |
f906d87e wallet: new option to check/confirm txpool backlog when sending (moneromooo-monero) 55bec1f0 rpc: add a new RPC to get current txpool backlog (sizes and fees) (moneromooo-monero) | |||||
2017-08-26 | blockchain: cap memory size of retrieved blocks | moneromooo-monero | 1 | -2/+7 | |
It helps keep memory usage down when a wallet refreshes through a string of large blocks | |||||
2017-08-26 | rpc: decrease memory usage a bit in getblocks.bin | moneromooo-monero | 1 | -4/+7 | |
2017-08-26 | Fix getblocktemplate RPC returning wrong reserved_offset | Guillaume LE VAILLANT | 1 | -1/+1 | |
The byte for TX_EXTRA_TAG_PUBKEY is already included in res.reserved_offset by the call to slow_memmem. | |||||
2017-08-26 | wallet: new option to check/confirm txpool backlog when sending | moneromooo-monero | 4 | -3/+123 | |
2017-08-26 | daemon: fix backlog estimating at max block size | moneromooo-monero | 1 | -2/+3 | |
Block size will pretty much never be fully used, unless all txes are using max fee. | |||||
2017-08-26 | rpc: add a new RPC to get current txpool backlog (sizes and fees) | moneromooo-monero | 7 | -0/+80 | |
2017-08-25 | txpool: update db tx metadata when it changes | moneromooo | 1 | -1/+15 | |
2017-08-25 | txpool: add tx size median to the pool stats | moneromooo | 3 | -2/+8 | |
2017-08-25 | wallet2: account for huge testnet reorgs for estimating height | moneromooo-monero | 1 | -0/+3 | |
2017-08-25 | Merge pull request #2311 | Riccardo Spagni | 11 | -78/+166 | |
df0cffed cryptonote_protocol: warn if we see a higher top version we expect (moneromooo-monero) 317ab21a cryptonote_protocol: less strict check on top version on connect (moneromooo-monero) cc81a371 cryptonote_protocol: update target height when syncing too (moneromooo-monero) e2ad372b cryptonote_protocol: simplify and remove unnecessary casts (moneromooo-monero) 727e67ca cryptonote_protocol: print peer top height along with its version (moneromooo-monero) b5345ef4 crypto: use malloc instead of alloca (moneromooo-monero) 80794b31 thread_group: set thread size to THREAD_STACK_SIZE (moneromooo-monero) 5524bc31 print peer id in 0 padded hex for consistency (moneromooo-monero) 8f8cc09b contrib: add sync_info to rlwrap command set (moneromooo-monero) 70b8c6d7 cryptonote_protocol: misc fixes to the new sync algorithm (moneromooo-monero) | |||||
2017-08-25 | Merge pull request #2330 | Riccardo Spagni | 1 | -1/+1 | |
ea15e72d tx_pool: fix crash in stats (Howard Chu) | |||||
2017-08-25 | Merge pull request #2328 | Riccardo Spagni | 1 | -2/+24 | |
679a5ab8 daemon: print estimated tx backlog in print_pool_stats (moneromooo-monero) | |||||
2017-08-25 | Merge pull request #2326 | Riccardo Spagni | 2 | -3/+6 | |
64ab8844 rpc_client: print destination host/port when failing to connect (moneromooo-monero) 333f7012 http_client: add getters for host and port (moneromooo-monero) | |||||
2017-08-25 | Merge pull request #2306 | Riccardo Spagni | 1 | -0/+3 | |
5d989b66 core: add mainnet v6 fork height at 1400000 (moneromooo-monero) | |||||
2017-08-23 | tx_pool: fix crash in stats | Howard Chu | 1 | -1/+1 | |
if tx receive_time == now. supersedes #2322 | |||||
2017-08-23 | cryptonote_protocol: warn if we see a higher top version we expect | moneromooo-monero | 1 | -0/+2 | |
2017-08-23 | cryptonote_protocol: less strict check on top version on connect | moneromooo-monero | 1 | -1/+1 | |
This allows peers who synced past a fork on the wrong height to reorg to the right chain after they updated their software to include the new version. | |||||
2017-08-23 | cryptonote_protocol: update target height when syncing too | moneromooo-monero | 1 | -0/+4 | |
2017-08-23 | cryptonote_protocol: simplify and remove unnecessary casts | moneromooo-monero | 1 | -5/+6 | |
2017-08-23 | cryptonote_protocol: print peer top height along with its version | moneromooo-monero | 1 | -1/+1 | |
2017-08-23 | crypto: use malloc instead of alloca | moneromooo-monero | 1 | -10/+9 | |
2017-08-23 | thread_group: set thread size to THREAD_STACK_SIZE | moneromooo-monero | 1 | -1/+4 | |
2017-08-23 | print peer id in 0 padded hex for consistency | moneromooo-monero | 4 | -22/+29 | |
2017-08-23 | p2p: init hashes after deserializing a network address | moneromooo-monero | 1 | -0/+2 | |
Fixes multiple connections to the same address | |||||
2017-08-23 | daemon: print estimated tx backlog in print_pool_stats | moneromooo-monero | 1 | -2/+24 | |
2017-08-22 | Cleanup test impact of moving blockchain_db_types() | Howard Chu | 3 | -0/+13 | |
2017-08-22 | Cleanup test impact of adding safesyncmode() method | Howard Chu | 5 | -2/+16 | |
2017-08-22 | rpc_client: print destination host/port when failing to connect | moneromooo-monero | 1 | -3/+3 | |
2017-08-22 | http_client: add getters for host and port | moneromooo-monero | 1 | -0/+3 | |
2017-08-22 | contrib: add sync_info to rlwrap command set | moneromooo-monero | 1 | -0/+1 | |
2017-08-22 | Fix refresh counter display | Howard Chu | 1 | -0/+8 | |
Suspend readline when refreshing | |||||
2017-08-22 | Simplify readline support | Howard Chu | 3 | -140/+85 | |
And don't use std::mutex | |||||
2017-08-21 | cryptonote_protocol: misc fixes to the new sync algorithm | moneromooo-monero | 5 | -38/+109 | |
Fix sync wedge corner case: It could happen if a connection went into standby mode, while it was the one which had requested the next span, and that span was still waiting for the data, and that peer is not on the main chain. Other peers can then start asking for that data again and again, but never get it as only that forked peer does. And various other fixes | |||||
2017-08-21 | Silence stupid fallthru warning in gcc 7 | Howard Chu | 2 | -5/+11 | |
2017-08-21 | WalletAPI: only allow trusted daemon when importing key images | Jaquee | 1 | -0/+5 | |
2017-08-21 | WalletAPI: copy wallet data when creating a view only wallet | Jaquee | 1 | -0/+27 | |
2017-08-21 | wallet2: export/import wallet data functions | Jaquee | 2 | -1/+55 | |
2017-08-20 | Toggle SAFE syncmode on and off automatically | Howard Chu | 8 | -2/+47 | |
If monerod is started with default sync mode, set it to SAFE after synchronization completes. Set it back to FAST if synchronization restarts (e.g. because another peer has a longer blockchain). If monerod is started with an explicit sync mode, none of this automation takes effect. | |||||
2017-08-20 | More DB support cleanup | Howard Chu | 6 | -72/+42 | |
Hide DB types from db_types.h - no reason to recompile dependencies when DB types change. Also remove lingering in-memory DB references, they've been obsolete since 9e82b694da120708652871b55f639d1ef306a7ec | |||||
2017-08-19 | DB cleanup | Howard Chu | 8 | -120/+50 | |
Hide LMDB-specific stuff behind blockchain_db.h. Nobody besides blockchain_db.cpp should ever be including DB-specific headers any more. | |||||
2017-08-18 | import_key_images - allow importing without being connected to daemon | Jaquee | 2 | -19/+24 | |
2017-08-18 | clarification of parameters for print_coinbase_tx_sum | Matthew Campassi | 1 | -1/+1 | |
2017-08-18 | core: add mainnet v6 fork height at 1400000 | moneromooo-monero | 1 | -0/+3 | |
2017-08-17 | Merge pull request #2303 | Riccardo Spagni | 11 | -8/+61 | |
5a283078 cryptonote_protocol: large block sync size before v4 (moneromooo-monero) 7b747607 cryptonote_protocol: kick idle synchronizing peers (moneromooo-monero) | |||||
2017-08-17 | Merge pull request #2301 | Riccardo Spagni | 2 | -20/+27 | |
1249a2a5 Construct on first use for completion_commands (Jethro Grassie) 67dd4933 Add sync lock on stop (Jethro Grassie) | |||||
2017-08-17 | Merge pull request #2300 | Riccardo Spagni | 2 | -6/+13 | |
42b34b35 Consistently print peer id in hex and on 16 chars (moneromooo-monero) | |||||
2017-08-17 | Merge pull request #2291 | Riccardo Spagni | 2 | -5/+5 | |
b59cd074 befor -> before (Nano Akron) | |||||
2017-08-17 | Merge pull request #2287 | Riccardo Spagni | 8 | -0/+30 | |
827afcb7 protocol: pass blockchain cumulative difficulty when syncing (moneromooo-monero) | |||||
2017-08-17 | cryptonote_protocol: large block sync size before v4 | moneromooo-monero | 7 | -8/+17 | |
2017-08-16 | cryptonote_protocol: kick idle synchronizing peers | moneromooo-monero | 5 | -0/+44 | |
In case they dropped off downloading for any reason, they'll get sent to download again. | |||||
2017-08-16 | p2p: add a couple early outs when the stop signal is received | moneromooo-monero | 1 | -0/+5 | |
This avoids quicker exit | |||||
2017-08-16 | abstract_tcp_server2: improve tracking/cancelling of early connections | moneromooo-monero | 2 | -22/+15 | |
We don't actually need to keep them past the call to start, as this adds them to the config object list, and so they'll then be cancelled already when the stop signal arrives. This allows removing the periodic call to cleanup connections. | |||||
2017-08-16 | Construct on first use for completion_commands | Jethro Grassie | 2 | -15/+23 | |
2017-08-16 | Add sync lock on stop | Jethro Grassie | 1 | -5/+4 | |
Also added and moved two free's hoping to fix leaks. | |||||
2017-08-16 | Consistently print peer id in hex and on 16 chars | moneromooo-monero | 2 | -6/+13 | |
2017-08-15 | befor -> before | Nano Akron | 2 | -5/+5 | |
Really unique yet consistent spelling mistake | |||||
2017-08-15 | protocol: pass blockchain cumulative difficulty when syncing | moneromooo-monero | 8 | -0/+30 | |
Not used yet. | |||||
2017-08-15 | Merge pull request #2297 | Riccardo Spagni | 1 | -2/+2 | |
78ecb2ad update major version number (Riccardo Spagni) | |||||
2017-08-15 | update major version number | Riccardo Spagni | 1 | -2/+2 | |
2017-08-15 | Merge pull request #2288 | Riccardo Spagni | 4 | -1/+14 | |
c6e200a8 core: add --db-salvage command line flag (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2293 | Riccardo Spagni | 2 | -1/+14 | |
dee41efa simplewallet: mnemonic language command-line arg (Eugene Otto) | |||||
2017-08-15 | Merge pull request #2292 | Riccardo Spagni | 4 | -3/+1708 | |
cb2d5ac7 mnemonics: new Esperanto word list (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2286 | Riccardo Spagni | 2 | -11/+18 | |
8655ba04 wallet_rpc_server: adjust small ring sizes to 5 for v6 (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2285 | Riccardo Spagni | 8 | -15/+68 | |
9c6eb75c ITS#8704 add MDB_PREVSNAPSHOT flag to mdb_env_open (Howard Chu) | |||||
2017-08-15 | Merge pull request #2283 | Riccardo Spagni | 1 | -1/+1 | |
d1f204d6 miner: set thread name before logging (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2282 | Riccardo Spagni | 1 | -0/+2 | |
7fdc178a p2p: fix random peer index being too large (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2281 | Riccardo Spagni | 2 | -82/+19 | |
e499ff33 simplewallet: factor out message_writer (moneromooo-monero) 7ed5ab47 scoped_message_writer: pause readline to match simplewallet (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2279 | Riccardo Spagni | 2 | -1/+12 | |
359517c7 wallet_rpc_server: fix possible privacy leak in on_import_key_images() (Jaquee) 20495b27 simplewallet: fix possible privacy leak in import_key_images() (Jaquee) | |||||
2017-08-15 | Merge pull request #2276 | Riccardo Spagni | 5 | -2/+30 | |
a1891ebe tests: fix tests build (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2277 | Riccardo Spagni | 1 | -4/+3 | |
6ce769c1 p2p: get net log spam down a bit (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2275 | Riccardo Spagni | 1 | -1/+1 | |
88e83f94 cryptonote_protocol_handler: log versions as unsigned ints (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2236 | Riccardo Spagni | 2 | -23/+23 | |
cb2d5110 Tweak net logs so we get more info on why networking can't start (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2274 | Riccardo Spagni | 2 | -6/+26 | |
7591c528 p2p: fallback on seed nodes if we can't make a connection (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2273 | Riccardo Spagni | 1 | -2/+2 | |
0e8d60c0 cryptonote_protocol: fix recv/send idle time before handshake (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2272 | Riccardo Spagni | 2 | -67/+56 | |
f90bbe2a cryptonote_protocol: keep target in sync with dropped connections (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2270 | Riccardo Spagni | 3 | -0/+10 | |
1307e3cc WalletAPI: add getDefaultDataDir() (Jaquee) | |||||
2017-08-15 | Merge pull request #2266 | Riccardo Spagni | 1 | -1/+1 | |
7007bd14 Change default block sync size from 200 to 20 (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2264 | Riccardo Spagni | 1 | -1/+1 | |
980e476c cryptonote_basic: fix silly CLANG warning about not emitting function (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2258 | Riccardo Spagni | 1 | -3/+20 | |
74597bd1 wallet2: improve refresh height determination (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2256 | Riccardo Spagni | 1 | -6/+11 | |
042b86c4 simplewallet: do not ask wallet filename twice when restoring (moneromooo-monero) | |||||
2017-08-15 | Tweak net logs so we get more info on why networking can't start | moneromooo-monero | 2 | -23/+23 | |
This should prevent "silent" failures to start | |||||
2017-08-15 | Merge pull request #2255 | Riccardo Spagni | 1 | -2/+2 | |
8bbed275 simplewallet: Be explicit about secret keys (Erik de Castro Lopo) | |||||
2017-08-15 | Merge pull request #2253 | Riccardo Spagni | 1 | -2/+2 | |
51ebedb8 epee: remove a couple unused locals (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2252 | Riccardo Spagni | 1 | -0/+4 | |
9707998a wallet2: clear some missing containers in clear() (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2250 | Riccardo Spagni | 1 | -1/+3 | |
f4f7eeba blockchain: log more info when we reject an orphan (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2248 | Riccardo Spagni | 5 | -25/+194 | |
71e28760 debug_utilities: only build for debug builds (moneromooo-monero) 55e150ff debug_utilities: new object-sizes debug tool (moneromooo-monero) fbaf5375 cn_deserialize: move to new debug_utilities subdirectory (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2246 | Riccardo Spagni | 2 | -14/+4 | |
d732c73e blockchain: remove a few unused variables (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2245 | Riccardo Spagni | 1 | -2/+2 | |
c8640a3d difficulty: fix misleading comment (Guillaume LE VAILLANT) | |||||
2017-08-15 | Merge pull request #2240 | Riccardo Spagni | 7 | -28/+89 | |
b7d6ec83 simplewallet: add (out of sync) or (no daemon) markers in the prompt (moneromooo-monero) fa23a500 wallet2: add a is_synced function (moneromooo-monero) f1307bbd node_rpc_proxy: add a proxy for target height (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2238 | Riccardo Spagni | 5 | -3/+36 | |
ad4649ac Enable verifying wallet password with having to load wallet. (m2049r) | |||||
2017-08-15 | Merge pull request #2237 | Riccardo Spagni | 4 | -19/+34 | |
5d4ef719 core: speed up output index unique set calculation (moneromooo-monero) 19d7f568 perf_timer: allow profiling more granular than millisecond (moneromooo-monero) bda8c598 epee: add nanosecond timer and pause/restart profiling macros (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2233 | Riccardo Spagni | 1 | -0/+8 | |
67ce4910 wallet2: store testnet bool in keys file (Jaquee) | |||||
2017-08-15 | Merge pull request #2232 | Riccardo Spagni | 1 | -1/+1 | |
87b5ede9 miner: fix ignoring battery from command line (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2205 | Riccardo Spagni | 5 | -3/+53 | |
c97d1bd3 wallet: return unlock_time in get_transfers (moneromooo-monero) | |||||
2017-08-15 | Merge pull request #2295 | Riccardo Spagni | 2 | -1/+41 | |
35e01a6e cryptonote_protocol: fix "holes" in block download schedule (moneromooo-monero) 3da1edfd cryptonote_protocol: fix out of order addition (moneromooo-monero) 6edb1b3e block_queue: do not add empty spans (moneromooo-monero) | |||||
2017-08-15 | cryptonote_protocol: fix "holes" in block download schedule | moneromooo-monero | 1 | -1/+2 | |
2017-08-15 | cryptonote_protocol: fix out of order addition | moneromooo-monero | 1 | -0/+37 | |
This was broken by the reorg fix, since we now have to add blocks regardless of their starting height. We now check whether we know the parent for the first block in the next span, or whether it was requested. If neither, it's an orphan. If it is not known, but was requested, we wait to get that block. | |||||
2017-08-15 | block_queue: do not add empty spans | moneromooo-monero | 1 | -0/+2 | |
2017-08-14 | mnemonics: new Esperanto word list | moneromooo-monero | 4 | -3/+1708 | |
Word list authored by: Engelberg, ProkhorZ Sources: Baza Radikaro Oficiala Reta Vortaro (http://www.reta-vortaro.de/revo/) Esperanto Panorama - Esperanto-English Dictionary (http://www.esperanto-panorama.net/vortaro/eoen.htm) ESPDIC - Paul Denisowski (http://www.denisowski.org/Esperanto/ESPDIC/espdic.txt) | |||||
2017-08-13 | simplewallet: mnemonic language command-line arg | Eugene Otto | 2 | -1/+14 | |
Add `--mnemonic-language` command-line arg so it's possible to generate a wallet without interacting with the CLI. | |||||
2017-08-13 | Merge pull request #2284 | Riccardo Spagni | 7 | -291/+56 | |
2ec15a69 daemon: print peers' top height in sync_info (moneromooo-monero) 08abb670 protocol: fix reorgs while syncing (moneromooo-monero) | |||||
2017-08-12 | daemon: print peers' top height in sync_info | moneromooo-monero | 3 | -2/+8 | |
2017-08-12 | core: add --db-salvage command line flag | moneromooo-monero | 4 | -1/+14 | |
Use to load the database when the primary meta page is corrupted | |||||
2017-08-12 | wallet_rpc_server: adjust small ring sizes to 5 for v6 | moneromooo-monero | 2 | -11/+18 | |
2017-08-12 | ITS#8704 add MDB_PREVSNAPSHOT flag to mdb_env_open | Howard Chu | 8 | -15/+68 | |
used to open the previous snapshot, in case the latest one is corrupted | |||||
2017-08-12 | cryptonote_protocol_handler: log versions as unsigned ints | moneromooo-monero | 1 | -1/+1 | |
They're interpreted as characters otherwise | |||||
2017-08-12 | protocol: fix reorgs while syncing | moneromooo-monero | 5 | -289/+48 | |
2017-08-12 | miner: set thread name before logging | moneromooo-monero | 1 | -1/+1 | |
2017-08-11 | p2p: fix random peer index being too large | moneromooo-monero | 1 | -0/+2 | |
2017-08-11 | simplewallet: factor out message_writer | moneromooo-monero | 2 | -82/+10 | |
2017-08-11 | scoped_message_writer: pause readline to match simplewallet | moneromooo-monero | 1 | -0/+9 | |
2017-08-11 | wallet_rpc_server: fix possible privacy leak in on_import_key_images() | Jaquee | 1 | -1/+6 | |
2017-08-11 | simplewallet: fix possible privacy leak in import_key_images() | Jaquee | 1 | -0/+6 | |
2017-08-10 | p2p: get net log spam down a bit | moneromooo-monero | 1 | -4/+3 | |
2017-08-10 | tests: fix tests build | moneromooo-monero | 5 | -2/+30 | |
Add get_fork_version and add_ideal_fork_version to core so cryptonote_protocol does not have to need the Blockchain class directly, as it's not in its dependencies, and add those to the fake core classes in tests too. | |||||
2017-08-09 | p2p: fallback on seed nodes if we can't make a connection | moneromooo-monero | 2 | -6/+26 | |
This avoids failing to connect to the network in case all known peers are unavailable (which can happen if the peer list is small). | |||||
2017-08-09 | cryptonote_protocol: fix recv/send idle time before handshake | moneromooo-monero | 1 | -2/+2 | |
2017-08-09 | cryptonote_protocol: keep target in sync with dropped connections | moneromooo-monero | 2 | -67/+56 | |
When a node is dropped, we stop considering its claimed blockchain height as a factor in the target height calculation. This prevents a runaway chain from being still thought to be the target even if the nodes carrying it are dropped. | |||||
2017-08-09 | Merge pull request #2271 | Riccardo Spagni | 1 | -0/+1 | |
3ff5ce63 connection_context: initialize state (moneromooo-monero) | |||||
2017-08-09 | connection_context: initialize state | moneromooo-monero | 1 | -0/+1 | |
Why this was initialized properly before I have no idea, but it is not anymore. Fix it, which fixes syncing in release mode. | |||||
2017-08-09 | Merge pull request #2269 | Riccardo Spagni | 4 | -1/+26 | |
635929ea protocol: add checks for top block hard fork version (moneromooo-monero) 7482253a epee: fixup KV_SERIALIZE_OPT to work in more cases (moneromooo-monero) | |||||
2017-08-09 | WalletAPI: add getDefaultDataDir() | Jaquee | 3 | -0/+10 | |
2017-08-09 | protocol: add checks for top block hard fork version | moneromooo-monero | 3 | -0/+22 | |
We won't even talk to a peer which claims a wrong version for its top block. This will avoid syncing to known bad peers in the first place. Also add IP fails when failing to verify a block. | |||||
2017-08-09 | epee: fixup KV_SERIALIZE_OPT to work in more cases | moneromooo-monero | 1 | -1/+4 | |
2017-08-09 | Merge pull request #2267 | Riccardo Spagni | 2 | -1/+2 | |
e49f6d43 net_node: fix m_in_timedsync initialization (moneromooo-monero) | |||||
2017-08-08 | net_node: fix m_in_timedsync initialization | moneromooo-monero | 2 | -1/+2 | |
This fixes nodes not being able to connect to nodes which use recent code. While there, init peer_id too. | |||||
2017-08-08 | Change default block sync size from 200 to 20 | moneromooo-monero | 1 | -1/+1 | |
With the new sync algorithm, the network overhead will be masked as the thread adding blocks isn't interrupted by network calls anymore. This should reduce memory usage a lot during sync. |