2014-03-18 06:11:00 -03:00
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-10-17 21:34:06 -03:00
|
|
|
#include "core/transaction.h"
|
2014-02-18 21:54:11 -03:00
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(main_tests)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(subsidy_limit_test)
|
|
|
|
{
|
2014-04-22 19:46:19 -03:00
|
|
|
CAmount nSum = 0;
|
2014-04-02 20:00:08 -03:00
|
|
|
for (int nHeight = 0; nHeight < 14000000; nHeight += 1000) {
|
2014-04-22 19:46:19 -03:00
|
|
|
CAmount nSubsidy = GetBlockValue(nHeight, 0);
|
2014-02-18 21:54:11 -03:00
|
|
|
BOOST_CHECK(nSubsidy <= 50 * COIN);
|
|
|
|
nSum += nSubsidy * 1000;
|
|
|
|
BOOST_CHECK(MoneyRange(nSum));
|
|
|
|
}
|
|
|
|
BOOST_CHECK(nSum == 2099999997690000ULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|