Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DRK] DarkCoin | Anonymous (alpha) | KGW | No Premine | ASIC Resistant
by
anonymousxx1503
on 26/02/2014, 00:26:25 UTC
You do realize that there are about 80 million coins still to be mined, right?  It will take awhile, but eventually things will even out.

It'll never reach 80 millions

YearBlocks a yearMax reward per blockCoins a yearTotal coins
02102402552560005256000
121024012.526280007884000
22102403.1256570008541000
32102400.390625821258623125
42102400.0244140635132.81258628257.813
52102400.000762939160.40039068628418.213
62102401.19209E-052.5062561048628420.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.