aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/BlockchainDB.cpp
Commit message (Collapse)AuthorAgeFilesLines
* cleaning up, removing redundant files, renaming, fixing incorrect licensesRiccardo Spagni2015-05-311-325/+0
|
* BerkeleyDB Blockchain building, not working yetThomas Winget2015-03-161-5/+23
| | | | | | | | | | Everything except actually *using* BlockchainBDB is wired up, but the db itself is not yet working. Some error about user mem not large enough. I think I know what this error means, but I can't determine the cause. Notes: BerkeleyDB does not allow 0-indexing in its recno type databases, so block numbers *in the database* will be 1-indexed. Modifications to indexing have been made as needed.
* CMake wiring, minor cleanup, minor test additionThomas Winget2015-03-161-1/+2
| | | | | | Make Cmake things aware of BerkeleyDB and BlockchainBDB Make the BlockchainDB unit tests aware of BlockchainBDB
* Fixed includes in BlockchainDB unit testsThomas Winget2015-03-101-2/+2
|
* BlockchainDB unit tests, lmdb linker flagThomas Winget2015-01-041-6/+22
| | | | | | | | | | | | Some BlockchainDB unit testing fleshed out (and working), rudimentary linker flag for lmdb in CMakeLists, but should probably be done "correctly" at some point (find it on whatever system you're building on and all that jazz). update for rebase (warptangent 2015-01-04) fix conflicts with upstream CMakeLists.txt files tests/CMakeLists.txt (remove edits from original commit)
* Initial commit of BlockchainDB tests, other miscThomas Winget2015-01-041-0/+290
miscellaneous changes to BlockchainDB/blockchain as well, namely replacing instances of std::list with std::vector