| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| |
| | |
583a7b5c core: protect precomputed block hashes with SHA256 (moneromooo-monero)
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
This is to prevent unbounded memory use. Since I don't think there
is a container that has quick insert, quick lookup, and automatic
FIFO, I use two and swap every N, clearing the oldest one.
|
| |/ |
|
| |
|
|
| |
It need not be any different
|
| |
|
|
| |
So the user can use https, while the automatic does not have to
|
| |
|
|
| |
Also print download success message as global log
|
| |\
| |
| |
| |
| |
| |
| | |
72deb484 updated fallback nodes (Riccardo Spagni)
33329f5b update version to 0.10.2 (Riccardo Spagni)
04a50a7e update checkpoints.dat (Riccardo Spagni)
c3599fa7 update copyright year, fix occasional lack of newline at line end (Riccardo Spagni)
|
| | | |
|
| |/ |
|
| |
|
|
|
|
|
|
|
|
| |
You're wondering how this fixes core tests, aren't you...
It prevents the miner (initialized by cryptonote::core) from
breaking trying to access arguments that were not added.
Since the tests don't use the miner directly, it makes more
sense to have cryptonote_core add those, since it also uses
the miner.
|
| |
|
|
|
|
|
|
| |
They're now used by core to determine the data directory to use
for the txpool directory.
This fixes an assert in the core tests, which don't use the RPC
server, which normally initializes the P2P code.
|
| |\
| |
| |
| | |
0288310e blockchain_db: add "raw" blobdata getters for block and transaction (moneromooo-monero)
|
| | |
| |
| |
| | |
This speeds up operations such as serving blocks to syncing peers
|
| |\ \
| | |
| | |
| | | |
cca95c1c blockchain_db: do not throw on expected partial results getting keys (moneromooo-monero)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| | |
When scanning for outputs used in a set of incoming blocks,
we expect that some of the inputs in their transactions will
not be found in the blockchain, as they could be in previous
blocks in that set. Those outputs will be scanned there at
a later point. In this case, we add a flag to control wehther
an output not being found is expected or not.
|
| |\ \
| | |
| | |
| | |
| | |
| | | |
a427235e core: add a missing newline on a string to be logged (moneromooo-monero)
b6a2230e unit_tests: fix minor blockchain_db regression (moneromooo-monero)
c488eca5 hardfork: tone down some logs (moneromooo-monero)
|
| | |/ |
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| | |
It just checks and prints a message if there is a new version
for now.
|
| | |
| |
| |
| | |
This is a good time for the operator to be around and see it
|
| |\ \
| | |
| | |
| | |
| | |
| | |
| | | |
bed2d9f2 Get rid of directory lock (Howard Chu)
2e913676 Handle map resizes from other processes (Howard Chu)
bf1348b7 Can't cache num_txs or num_outputs either (Howard Chu)
dc53e9ee Add a few read txns to streamline (Howard Chu)
|
| | | |
| | |
| | |
| | | |
We don't need it any more. Fixes issue #1633
|
| | |/
| |
| |
| | |
Slight perf gain, but mainly to reduce spam at loglevel 3
|
| |/
|
|
| |
They are not ready yet
|
| | |
|
| | |
|
| | |
|
| |\
| |
| |
| | |
b5cb8861 core: fix integrated addresses breaking with auto zero change (moneromooo-monero)
|
| | |
| |
| |
| |
| |
| |
| | |
Zero change is sent to a random address, which confuses the code
which determines which key to use to encrypt the payment id.
Ignore zero amounts for this purpose, so the payment id gets
encrypted with the real destination's key.
|
| |\ \
| |/
|/|
| | |
ca94d0a4 Separate data per P2P port (Miguel Herranz)
|
| | |
| |
| |
| |
| |
| |
| |
| | |
poolstate.bin and p2pstate.bin are stored in .bitmonero/ if the default
P2P port is being used.
If another port is used both files are stored in
.bitmonero/PORTNUMBER/.
|
| |\ \
| | |
| | |
| | |
| | | |
3ae79a59 core: set missing verifivation_failed flag when rejecting a tx (moneromooo-monero)
ea6549e9 core_tests: decrease trace level from trace to debug (moneromooo-monero)
|
| | |/
| |
| |
| | |
This fixes two core rct tests
|
| |\ \
| | |
| | |
| | |
| | |
| | | |
58e82506 Blockfill - Sort tx pool correctly (Alexis Enston)
5f7a8741 Blockfill - Take TX fees into account properly (Alexis Enston)
4ecab0d8 Consider empty block when filling with TXs (Alexis Enston)
|
| | | | |
|
| | | | |
|
| | |/ |
|
| |\ \
| | |
| | |
| | | |
55a8e982 moved get_account_address_from_str_or_url from libcommon to libcryptonote_core (kenshi84)
|
| | |/ |
|
| |\ \
| |/
|/|
| |
| |
| | |
0644eed7 Remove boost/foreach.cpp includes (Miguel Herranz)
36dd3e23 Replace BOOST_REVERSE_FOREACH with ranged for (Miguel Herranz)
629e3101 Replace BOOST_FOREACH with C++11 ranged for (Miguel Herranz)
|
| | | |
|
| | | |
|
| | | |
|
| |/
|
|
| |
database before quitting
|
| |\
| |
| |
| | |
f0989893 core: cache tx hashes of failing semantics txes (moneromooo-monero)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
b70ab128 rpc: fix orphan_status when getting blocks (moneromooo-monero)
|
| | |/
| |
| |
| | |
It was always set to false, even for orphan blocks
|