mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Edit subsidy_limit_test to account for BIP42
Because no one wants 4 gold mines being discovered every mibillenium.
This commit is contained in:
parent
c5a9d2ca9e
commit
5cfd3a70a6
@ -8,7 +8,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;
|
||||
|
Loading…
Reference in New Issue
Block a user