Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-04-06 | CMake: Add missing headers via monero_find_all_headers macro | mj-xmr | 1 | -30/+1 | |
2022-03-04 | Copyright: Update to 2022 | mj-xmr | 1 | -1/+1 | |
2021-09-03 | external: remove unbound submodule | selsta | 1 | -1/+1 | |
2020-07-19 | Merge pull request #6512 | Alexander Blair | 1 | -1/+1 | |
5ef0607da Update copyright year to 2020 (SomaticFanatic) | |||||
2020-05-24 | easylogging++: sanitize log payload | moneromooo-monero | 1 | -1/+2 | |
Some of it might be coming from untrusted sources Reported by itsunixiknowthis | |||||
2020-05-06 | Update copyright year to 2020 | SomaticFanatic | 1 | -1/+1 | |
Update copyright year to 2020 | |||||
2019-03-05 | Update 2019 copyright | binaryFate | 1 | -1/+1 | |
2019-01-28 | performance_tests: better stats, and keep track of timing history | moneromooo-monero | 1 | -0/+2 | |
2019-01-22 | Pruning | moneromooo-monero | 1 | -0/+2 | |
The blockchain prunes seven eighths of prunable tx data. This saves about two thirds of the blockchain size, while keeping the node useful as a sync source for an eighth of the blockchain. No other data is currently pruned. There are three ways to prune a blockchain: - run monerod with --prune-blockchain - run "prune_blockchain" in the monerod console - run the monero-blockchain-prune utility The first two will prune in place. Due to how LMDB works, this will not reduce the blockchain size on disk. Instead, it will mark parts of the file as free, so that future data will use that free space, causing the file to not grow until free space grows scarce. The third way will create a second database, a pruned copy of the original one. Since this is a new file, this one will be smaller than the original one. Once the database is pruned, it will stay pruned as it syncs. That is, there is no need to use --prune-blockchain again, etc. | |||||
2018-12-31 | Merge pull request #4929 | luigi1111 | 1 | -0/+4 | |
5a76933 Add glibc back compat code (TheCharlatan) | |||||
2018-12-04 | move int-util.h to epee | moneromooo-monero | 1 | -1/+0 | |
2018-12-04 | Add glibc back compat code | TheCharlatan | 1 | -0/+4 | |
To ensure that the binaries compiled by gitian run across many linux distributions, enforce 2.17 as the minimum libc version supported. | |||||
2018-11-20 | Fix issue 4793 - M/N multisig transaction signature | naughtyfox | 1 | -2/+4 | |
2018-10-02 | common: Windows 'spawn' support for tx and block notifications | xiphon | 1 | -2/+2 | |
2018-09-29 | Merge pull request #4333 | Riccardo Spagni | 1 | -0/+4 | |
73403004 add --block-notify to monerod and --tx-notify to monero-wallet-{cli,rpc} (moneromooo-monero) | |||||
2018-09-21 | Merge pull request #4371 | Riccardo Spagni | 1 | -0/+4 | |
55c7cd14 Adding expect<T> - a value-or-error implementation (Lee Clagett) | |||||
2018-09-12 | Adding expect<T> - a value-or-error implementation | Lee Clagett | 1 | -0/+4 | |
2018-09-11 | aligned: aligned memory alloc/realloc/free | moneromooo-monero | 1 | -2/+4 | |
2018-06-28 | remove epee from link lines where it's redundant | moneromooo-monero | 1 | -1/+0 | |
For some reason, this confuses and kills ASAN on startup as it thinks const uint8_t ipv4_network_address::ID is defined multiple times. | |||||
2018-04-25 | Adding required library (dependency of boost::this_thread::sleep_for) | Gene Peters | 1 | -0/+1 | |
2018-01-26 | Update 2018 copyright | xmr-eric | 1 | -1/+1 | |
2018-01-10 | Merge pull request #3061 | Riccardo Spagni | 1 | -1/+2 | |
fc041b58 common cmake: make sure translation_files.h is generated for i18n.cpp (stoffu) | |||||
2018-01-10 | move memwipe to epee to avoid common<->crypto circular dependencies | moneromooo-monero | 1 | -6/+0 | |
2018-01-04 | common cmake: make sure translation_files.h is generated for i18n.cpp | stoffu | 1 | -1/+2 | |
2017-11-27 | add a memwipe function | moneromooo-monero | 1 | -0/+6 | |
It's meant to avoid being optimized out memory_cleanse lifted from bitcoin | |||||
2017-09-25 | Merge pull request #2440 | Riccardo Spagni | 1 | -0/+1 | |
6137a0b9 blockchain: reject unsorted ins and outs from v7 (moneromooo-monero) 16afab90 core: sort ins and outs key key image and public key, respectively (moneromooo-monero) 0c36b9f9 common: add apply_permutation file and function (moneromooo-monero) | |||||
2017-09-14 | Use a threadpool | Howard Chu | 1 | -4/+2 | |
Instead of constantly creating and destroying threads | |||||
2017-09-13 | common: add apply_permutation file and function | moneromooo-monero | 1 | -0/+1 | |
This algorithm is adapted from Raymond Chen's code: https://blogs.msdn.microsoft.com/oldnewthing/20170109-00/?p=95145 | |||||
2017-05-23 | changed crypto to cncrypto so it generated libcncrypto | Gentian | 1 | -1/+1 | |
fix a cmakelist | |||||
2017-02-21 | update copyright year, fix occasional lack of newline at line end | Riccardo Spagni | 1 | -1/+1 | |
2017-02-21 | cmakify openssl | Riccardo Spagni | 1 | -1/+3 | |
2017-02-20 | core: updates can now be downloaded (and SHA256 hash checked) | moneromooo-monero | 1 | -0/+2 | |
2017-02-20 | util: add a SHA256 function | moneromooo-monero | 1 | -0/+1 | |
2017-02-20 | Optionally query moneropulse DNS records to check for updates | moneromooo-monero | 1 | -2/+4 | |
It just checks and prints a message if there is a new version for now. | |||||
2017-02-11 | Merge pull request #1689 | Riccardo Spagni | 1 | -0/+3 | |
ce7fcbb4 Add server auth to monerod, and client auth to wallet-cli and wallet-rpc (Lee Clagett) | |||||
2017-02-08 | extract some basic code from libcryptonote_core into libcryptonote_basic | kenshi84 | 1 | -0/+1 | |
2017-02-06 | Add server auth to monerod, and client auth to wallet-cli and wallet-rpc | Lee Clagett | 1 | -0/+3 | |
2017-02-05 | common: fix link error on at least one platform (no clue which one) | moneromooo-monero | 1 | -0/+1 | |
Bug and fix reported by tdprime | |||||
2016-11-23 | Added task_region - a fork/join task implementation | Lee Clagett | 1 | -0/+2 | |
2016-11-02 | adding thread_group for managing async tasks | Lee Clagett | 1 | -2/+4 | |
2016-10-10 | perf_timer: new class and macros to make performance logs easier | moneromooo-monero | 1 | -1/+3 | |
Call PERF_TIMER(name), which is scoped. | |||||
2016-09-26 | Dropped "bit" from bitmonero. | Randi Joseph | 1 | -3/+3 | |
2016-09-18 | cmake: transitive deps and remove deprecated LINK_* | redfish | 1 | -1/+3 | |
Keep the immediate direct deps at the library that depends on them, declare deps as PUBLIC so that targets that link against that library get the library's deps as transitive deps. Break dep cycle between blockchain_db <-> crytonote_core. No code refactoring, just hide cycle from cmake so that it doesn't complain (cycles are allowed only between static libs, not shared libs). This is in preparation for supproting BUILD_SHARED_LIBS cmake built-in option for building internal libs as shared. | |||||
2016-07-27 | cmake,common: flag for stack trace | redfish | 1 | -2/+5 | |
By default the flag is enabled whenever libunwind is found on the system, with the exception of static build on OSX (for which we can't install the throw hook #932 due to lack of support for --wrap in OSX ld64 linker). | |||||
2016-04-28 | Print stack trace on exceptions | moneromooo-monero | 1 | -2/+5 | |
if libunwind is found. Useful for debugging logs. | |||||
2016-03-21 | Revert "Print stack trace upon exceptions" | moneromooo-monero | 1 | -3/+0 | |
Ain't nobody got time for link/cmake skullduggery. This reverts commit fff238ec94ac6d45fc18c315d7bc590ddfaad63d. | |||||
2016-03-19 | Print stack trace upon exceptions | moneromooo-monero | 1 | -0/+3 | |
Useful for debugging users' logs | |||||
2015-12-31 | updated copyright year | Riccardo Spagni | 1 | -1/+1 | |
2015-07-14 | Translatable strings for simplewallet | moneromooo-monero | 1 | -2/+4 | |
The system is mostly the Qt system, but we don't use Qt to avoid the dependencies. See README.i18n for details. | |||||
2015-02-24 | Daemonize changes pulled in -- daemon builds | Thomas Winget | 1 | -0/+3 | |
many RPC functions added by the daemonize changes (and related changes on the upstream dev branch that were not merged) were commented out (apart from return). Other than that, this *should* work...at any rate, it builds, and that's something. | |||||
2015-01-02 | year updated in license | Riccardo Spagni | 1 | -1/+1 | |
2014-10-24 | cmake: support 2.8.7 | Ben Boeckel | 1 | -1/+1 | |
Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer versions prefer PUBLIC and PRIVATE instead, but still support the LINK_ prefix. | |||||
2014-10-23 | cmake: handle private vs. public headers | Ben Boeckel | 1 | -2/+10 | |
2014-10-23 | cmake: refactor common code with libraries | Ben Boeckel | 1 | -9/+1 | |
2014-10-23 | cmake: put each library into its own directory | Ben Boeckel | 1 | -0/+64 | |
This cleans up the CMake code and shows patterns more easily (to be refactored in the next commit). |