It'll never reach 80 millions
Year | Blocks a year | Max reward per block | Coins a year | Total coins |
0 | 210240 | 25 | 5256000 | 5256000 |
1 | 210240 | 12.5 | 2628000 | 7884000 |
2 | 210240 | 3.125 | 657000 | 8541000 |
3 | 210240 | 0.390625 | 82125 | 8623125 |
4 | 210240 | 0.024414063 | 5132.8125 | 8628257.813 |
5 | 210240 | 0.000762939 | 160.4003906 | 8628418.213 |
6 | 210240 | 1.19209E-05 | 2.506256104 | 8628420.719 |
I think at this point people need to stop listening to you, you clearly have no clue. Minimum block reward is not a fraction. It's 5 or 10 coins, don't remember which.
https://github.com/evan82/darkcoin/tree/master/src
main.cpp line 1108
Oh god... just stop, you've lost all credibility
if(nHeight >= 17000 && dDiff > 75) { // GPU/ASIC difficulty calc
// 2222222/(((x+2600)/9)^2)
nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
if (nSubsidy > 25) nSubsidy = 25;
if (nSubsidy < 5) nSubsidy = 5;
} else { // CPU mining calc
nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
if (nSubsidy > 500) nSubsidy = 500;
if (nSubsidy < 25) nSubsidy = 25;
}
See that little if subsidy < 5 nsubsidy =5 ? Minimum reward is 5 , Max is 25.