Post
Topic
Board Announcements (Altcoins)
Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update
by
halibit
on 04/05/2014, 13:04:57 UTC
We need new fix I think.

I don't get how block size can be 0.01 with this code?

Code:
        {
if (nHeight <= 315000) nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
if (nHeight > 315000) nSubsidy = (3100 - ((nHeight * 0.01) -310000)) - 300000; //Blockreward fixed decreasing 0.01 steps
if (nSubsidy <= 1000) nSubsidy = 1000; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}