Thomas Winget
429a740562
throw inline functions need to keep exception type
...
As it is useful for functions calling BlockchainDB functions to know
whether an exception is expected (attempting to get a block that doesn't
exist and counting it missing if not, to save time checking if it
does, for example), the inline functions throw{0,1} need to keep the
exception type information.
Slight comment update due to copy/paste failure.
2015-01-09 07:29:05 -05:00
Thomas Winget
14555eefd5
Fixes segfault in Blockchain::handle_alternative_block
...
This commit should fix the segfault in
Blockchain::handle_alternative_block, and also updates a few comments
that were either incorrect or incomplete.
2015-01-09 05:56:51 -05:00
Riccardo Spagni
24ddfa792e
Merge pull request #206
...
1b46226
std::atomic_flag has no copy/move constructor, can't have a vector (Thomas Winget)
df53c0a
small typo in previous commit (Thomas Winget)
4a53898
DNS seed timeout and fallback (Thomas Winget)
2015-01-08 12:18:00 +02:00
Thomas Winget
5086ca1db5
add BlockchainDB tests to new cmake
2015-01-07 00:48:45 -05:00
Riccardo Spagni
6600966e30
Merge pull request #211
...
7de1a2d
previous hash added to GBT (Riccardo Spagni)
2015-01-06 18:39:19 +02:00
Riccardo Spagni
7de1a2d57a
previous hash added to GBT
2015-01-06 18:37:10 +02:00
Thomas Winget
7374b81b23
Merge pull request #19 from warptangent/fix_tx_output
...
Obtain tx hash and tx output index from amount and output offset
2015-01-04 19:39:44 -08:00
Thomas Winget
4fa1a83f6e
Merge pull request #18 from moneromooo-monero/blockchain
...
Blockchain
2015-01-04 19:39:43 -08:00
warptangent
c5c100c69b
Obtain tx hash and tx output index from amount and output offset
...
Fixes problem of obtaining incorrect outputs used for tx input.
Reverts to earlier intended behavior that was fixed in previous
commit's split of get_output_tx_and_index into two functions.
2015-01-04 19:39:43 -08:00
Thomas Winget
c50cd95674
Fixes a bug with getting output metadata from BlockchainDB
...
Thanks to moneromooo-monero for spotting the bug.
2015-01-04 19:39:43 -08:00
moneromooo-monero
ad8200a573
db_lmdb: fix global index calculation off by 1
...
This finally fixes raw tx being accepted by the daemon.
2015-01-04 19:39:43 -08:00
Thomas Winget
c3fa07b44b
update comments to reflect changed code
2015-01-04 19:39:43 -08:00
moneromooo-monero
57b80c541e
db_lmdb: remove redundant checks
2015-01-04 19:39:43 -08:00
Thomas Winget
5baf9d9eb3
Merge pull request #17 from moneromooo-monero/blockchain
...
db_lmdb: catch attempt to remove block from an empty blockchain
db_lmdb: do not give the group database write permissions
2015-01-04 19:39:43 -08:00
moneromooo-monero
1362846dd7
blockchain_converter: add --testnet for converting testnet blockchain
2015-01-04 19:39:43 -08:00
moneromooo-monero
59d2b0ed1c
db_lmdb: do not give the group database write permissions
2015-01-04 19:39:43 -08:00
moneromooo-monero
4c2a45288a
db_lmdb: catch attempt to remove block from an empty blockchain
...
It would probably have thrown when not finding a block at
height 2^64-1, but better make things clear.
2015-01-04 19:39:43 -08:00
Thomas Winget
eaaaada797
Merge pull request #16 from moneromooo-monero/blockchain
...
db_lmdb: factor all the log+throw code paths
2015-01-04 19:39:42 -08:00
Thomas Winget
81c28c211c
Merge pull request #15 from moneromooo-monero/blockchain
...
many const-correctness changes and code quality enhancements. minor bugfix on block removal.
2015-01-04 19:39:42 -08:00
moneromooo-monero
3a3459d59b
db_lmdb: factor all the log+throw code paths
2015-01-04 19:39:42 -08:00
Thomas Winget
53ce3c95d9
Merge pull request #14 from moneromooo-monero/blockchain
...
Blockchain
lots of const-correctness and more proper code, bug fix with syncing.
2015-01-04 19:39:42 -08:00
moneromooo-monero
3fcb8daf6e
db_lmdb: factor the MDB_val setup code
...
It makes the code simpler, avoids possible copy/paste errors
(wrong sizeof, etc), and generally unclutters the calling code.
2015-01-04 19:39:42 -08:00
moneromooo-monero
198368b2e1
blockchain: fix wallet syncing from scratch
...
When the wallet syncs from the first block, it is fine to start
at the genesis block.
2015-01-04 19:39:42 -08:00
moneromooo-monero
609cf7fc92
blockchain_converter: a bit more user friendly output
2015-01-04 19:39:42 -08:00
moneromooo-monero
2b9f737872
blockchain_converter: only call data path function once
2015-01-04 19:39:42 -08:00
moneromooo-monero
1860658eec
blockchain: do not append "testnet" to the data directory
...
It is already there (unless overridden via command line).
2015-01-04 19:39:42 -08:00
moneromooo-monero
1c578ad3f8
db_lmdb: remove block timestamp too when removing a block
2015-01-04 19:39:42 -08:00
moneromooo-monero
c93a186637
db_lmdb: do not cast const away
2015-01-04 19:39:42 -08:00
Thomas Winget
e285ee5aec
Merge pull request #13 from moneromooo-monero/blockchain
...
Add lmdb to the cmake gunk, and use actual user directory for the blockchain location
2015-01-04 19:39:41 -08:00
moneromooo-monero
1d23db220a
db_lmdb: do not keep a dangling pointer to stack objects
2015-01-04 19:39:41 -08:00
moneromooo-monero
29b5876ad1
db_lmdb: make cursor internal members private
2015-01-04 19:39:41 -08:00
moneromooo-monero
a3157d7b69
blockchain_storage: refactor genesis block creation
...
The existing assert is kept as it is stricter than the function's
internal assert.
2015-01-04 19:39:41 -08:00
moneromooo-monero
8e41b1e735
blockchain_storage: add consts where appropriate
2015-01-04 19:39:41 -08:00
moneromooo-monero
98bdadcad7
blockchain_converter: delete blockchain on succesful exit
...
While the dtor implementation does not actually do anything, other
paths do delete it, and the dtor might do someting later.
2015-01-04 19:39:41 -08:00
moneromooo-monero
256162fcd5
checkpoints: add consts where appropriate
2015-01-04 19:39:41 -08:00
moneromooo-monero
b7270ab60e
blockchain: add consts where appropriate
2015-01-04 19:39:41 -08:00
moneromooo-monero
23f3cb4c0e
blockchain_db: add consts where appropriate
2015-01-04 19:39:41 -08:00
moneromooo-monero
10fd6cab6c
blockchain_db: factor some exception code
...
Ideally, the log would go in the exception's ctor, but
two log levels are used, so I'd need to specify the level
in the ctor, which isn't great as it's not really related
to the exception.
2015-01-04 19:39:41 -08:00
Thomas Winget
215e63b79f
extraneous semicolon in Blockchain::complete_timestamps_vector
...
credit here:
https://bitcointalk.org/index.php?topic=583449.msg9562845#msg9562845
2015-01-04 19:39:40 -08:00
moneromooo-monero
11129b9ee4
blockchain_converter: use the actual blockchain location
2015-01-04 19:39:40 -08:00
Thomas Winget
8e1b7e2ad4
raised maximum mapsize for lmdb to ~16GB
2015-01-04 19:39:40 -08:00
moneromooo-monero
0886183568
build: add liblmdb to the cmake autodetection system
...
update for rebase (warptangent 2015-01-04)
src/cryptonote_core/CMakeLists.txt (edit)
- replace LMDB_LIBRARIES with LMDB_LIBRARY set from autodetection
2015-01-04 19:39:40 -08:00
Thomas Winget
6c8b8acfe4
more blockchain height-related fixes, syncing other nodes code this time
2015-01-04 19:39:40 -08:00
Thomas Winget
9455e0cd58
~ didn't work, need hard path. debug print.
2015-01-04 19:39:40 -08:00
Thomas Winget
4af0918501
very, VERY primitive blockchain converter
...
hard-coded config folder, hard-coded BlockchainDB subclass.
Needs finessing, but should be testable this way.
update for rebase (warptangent 2015-01-04)
fix conflicts with upstream CMakeLists.txt files
src/CMakeLists.txt (edit original commit)
src/blockchain_converter/CMakeLists.txt (add)
2015-01-04 19:38:56 -08:00
Thomas Winget
26a7db38eb
add new checkpointing behavior to Blockchain class
2015-01-04 19:31:20 -08:00
Thomas Winget
767aac274b
Remove unused dependency
2015-01-04 19:31:20 -08:00
Thomas Winget
006e106ae9
Store output pubkeys separately, bug fixes
2015-01-04 19:31:20 -08:00
Thomas Winget
ab7951d99a
Minor bugfixes, redundancy removal
...
Minor bugfixes in block removal
Storing outputs outside their transactions is largely unnecessary, and
thus has been removed.
2015-01-04 19:31:20 -08:00
Thomas Winget
71b18d7166
moar bug fixes, removed debug prints
2015-01-04 19:31:19 -08:00