Merge pull request #3842 from ditto-b/master

Fix for GetBlockValue() after block 13,440,000
This commit is contained in:
Gavin Andresen
2014-04-02 21:31:17 -04:00
2 changed files with 7 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ BOOST_AUTO_TEST_SUITE(main_tests)
BOOST_AUTO_TEST_CASE(subsidy_limit_test)
{
uint64_t nSum = 0;
for (int nHeight = 0; nHeight < 7000000; nHeight += 1000) {
for (int nHeight = 0; nHeight < 14000000; nHeight += 1000) {
uint64_t nSubsidy = GetBlockValue(nHeight, 0);
BOOST_CHECK(nSubsidy <= 50 * COIN);
nSum += nSubsidy * 1000;