| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Reworked comment around the code for identifying transactions to spend, to ↵ | Ross Nicoll | 2014-04-13 | 1 | -7/+7 |
| | | | | | | | separate explanation of condition, and result. Corrected comment references to "cent", with "coin" in wallet tests, to match changes to units. | ||||
| * | Shifted unit in wallet tests from CENT to COIN as a base, to avoid problems ↵ | Ross Nicoll | 2014-04-12 | 1 | -25/+25 |
| | | | | | with dust avoidance code. | ||||
| * | Scaled up units when testing dust-avoidance in wallet. | Ross Nicoll | 2014-04-12 | 1 | -8/+8 |
| | | |||||
| * | Modified expected values in wallet tests to take into account the ↵ | Ross Nicoll | 2014-04-12 | 1 | -2/+2 |
| | | | | | numerically higher transaction costs of DOGE. | ||||
| * | Unit test fixes for AssertLockHeld / -DDEBUG_LOCKORDER | Gavin Andresen | 2014-01-24 | 1 | -0/+2 |
| | | | | | | | | | | Unit tests would fail if compiled with -DDEBUG_LOCKORDER (AssertLockHeld() would fail; AssertLockHeld() relies on the DEBUG_LOCKORDER code to keep track of locks held). Fixed by LOCK'ing the wallet mutex in the unit tests that manipulate the wallet. | ||||
| * | Cleanup code using forward declarations. | Brandon Dahler | 2013-11-10 | 1 | -5/+10 |
| | | | | | | | | | | 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. | ||||
| * | Fix minor unit test memory leaks | Pieter Wuille | 2013-09-19 | 1 | -0/+1 |
| | | |||||
| * | Define dust transaction outputs, and make them non-standard | Gavin Andresen | 2013-05-03 | 1 | -9/+8 |
| | | |||||
| * | Fix signed/unsigned comparison warnings | Gavin Andresen | 2013-04-03 | 1 | -15/+15 |
| | | |||||
| * | Bugfix: Use standard BTC unit in comments | Luke Dashjr | 2012-08-01 | 1 | -2/+2 |
| | | |||||
| * | Fix a couple more typos | fanquake | 2012-06-30 | 1 | -1/+1 |
| | | |||||
| * | Fix coin selection to only include change when it's necessary. | Chris Moore | 2012-06-04 | 1 | -38/+7 |
| | | |||||
| * | Test that the coin selection code is suitably random, and add tests re. ↵ | Chris Moore | 2012-06-04 | 1 | -1/+71 |
| | | | | | sub-cent change. | ||||
| * | Refactor SelectCoinsMinConf() and add unit tests. | Chris Moore | 2012-06-04 | 1 | -0/+256 |
| AvailableCoins() makes a vector of available outputs which is then passed to SelectCoinsMinConf(). This allows unit tests to test the coin selection algorithm without having the whole blockchain available. | |||||