Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-26 | Make appropriate getter-routines "const" in CCoinsView. | Daniel Kraft | |
Mark the "Get"/"Have" routines in CCoinsView and subclasses as "const". | |||
2014-08-24 | Allow BatchWrite to destroy its input, reducing copying | Pieter Wuille | |
2014-08-07 | CCoinsKeyHasher::operator() should return size_t | Wladimir J. van der Laan | |
It currently returns uint64_t, which on older boost (at least 1.46) causes test failures on 32-bit systems. This problem was introduced in bc42503. Fixes #4634. | |||
2014-07-14 | Use unordered_map for CCoinsViewCache with salted hash | Pieter Wuille | |
2014-07-01 | typedef std::map<uint256, CCoins> to CCoinsMap | Wladimir J. van der Laan | |
This makes it possible to switch to a more efficient map type without changing all occurences manually. Merges half of #4413. | |||
2013-11-30 | Add verbose boolean to getrawmempool | Gavin Andresen | |
Also changes mempool to store CTxMemPoolEntries to keep track of when they enter/exit the pool. | |||
2013-11-30 | Refactor: move GetValueIn(tx) to tx.GetValueIn() | Gavin Andresen | |
GetValueIn makes more sense as a CTransaction member. | |||
2013-11-10 | Move CCoins-related logic to coins.{cpp.h} | Pieter Wuille | |