mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
3fc6846181
- 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
25 lines
687 B
C++
25 lines
687 B
C++
// 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.
|
|
|
|
#include "core.h"
|
|
#include "main.h"
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
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) {
|
|
uint64_t nSubsidy = GetBlockValue(nHeight, 0);
|
|
BOOST_CHECK(nSubsidy <= 50 * COIN);
|
|
nSum += nSubsidy * 1000;
|
|
BOOST_CHECK(MoneyRange(nSum));
|
|
}
|
|
BOOST_CHECK(nSum == 2099999997690000ULL);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|