Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-30 | Rolling bloom filter class | Gavin Andresen | |
For when you need to keep track of the last N items you've seen, and can tolerate some false-positives. Rebased-by: Pieter Wuille <pieter.wuille@gmail.com> | |||
2015-03-12 | tests: add a BasicTestingSetup and apply to all tests | Wladimir J. van der Laan | |
Make sure that chainparams and logging is properly initialized. Doing this for every test may be overkill, but this initialization is so simple that that does not matter. This should fix the travis issues. | |||
2015-01-06 | Merge pull request #5513 | Wladimir J. van der Laan | |
856e862 namespace: drop most boost namespaces and a few header cleanups (Cory Fields) 9b1ab86 namespace: drop boost::assign altogether here (Cory Fields) a324199 namespace: remove boost namespace pollution (Cory Fields) | |||
2015-01-05 | String conversions uint256 -> uint256S | Wladimir J. van der Laan | |
If uint256() constructor takes a string, uint256(0) will become dangerous when uint256 does not take integers anymore (it will go through std::string(const char*) making a NULL string, and the explicit keyword is no help). | |||
2015-01-02 | namespace: drop most boost namespaces and a few header cleanups | Cory Fields | |
A few boost::asio were left around because they're very wordy otherwise. | |||
2014-12-16 | Remove references to X11 licence | Michael Ford | |
2014-12-05 | Move CMerkleBlock and CPartialMerkleTree to their own file | Matt Corallo | |
2014-10-29 | Separate protocol versioning from clientversion | Cory Fields | |
2014-10-21 | Fixes for missing boost tuple.hpp header include. | randy-waterhouse | |
2014-07-21 | CBloomFilter::clear() method | Tom Harding | |
2014-07-21 | Revert "CBloomFilter::clear() method" | Wladimir J. van der Laan | |
This reverts commit 8fbf03995df9a2003be603be1a930bc3373d56e0. | |||
2014-07-07 | test/bloom_tests: Use UL suffix for unsigned long number to ensure compatibility | Luke Dashjr | |
2014-06-27 | CBloomFilter::clear() method | Tom Harding | |
2014-06-22 | Code simplifications after CTransaction::GetHash() caching | Pieter Wuille | |
2014-03-18 | Add licenses for tests and test data | Wladimir J. van der Laan | |
- Add license headers to source files (years based on commit dates) in `src/test` as well as `qa` - Add `README.md` to `src/test/data` specifying MIT license Fixes #3848 | |||
2013-11-10 | Cleanup code using forward declarations. | Brandon Dahler | |
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files. | |||
2013-05-30 | CSecret/CKey -> CKey/CPubKey split/refactor | Pieter Wuille | |
2013-01-16 | Add nFlags to CBloomFilter to make filter updating optional. | Matt Corallo | |
2013-01-16 | Use CPartialMerkleTree for CMerkleBlock transactions. | Matt Corallo | |
2013-01-16 | Add a nTweak to bloom filters to tweak the seed. | Matt Corallo | |
2013-01-16 | Add test cases for CMerkleBlock and CBloomFilter. | Matt Corallo | |