Post
Topic
Board Announcements (Altcoins)
Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange
by
halibit
on 03/05/2014, 13:42:33 UTC
I can make code fix:
            nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
is not right.
What we want to be?

I have windows and linux computer ready for compile new wallets, jus give me right code.

1/ nSubsidy = (10000 - ((nHeight - 10000) * 0.01)) * COIN; if we keep 10K reward

2/ nSubsidy = (1000 - ((nHeight - 1000) * 0.01)) * COIN; if we make it 1K reward

You guys confirm ?
Don't want to quess. Are you sure about the code?

I think
nSubsidy = (310000 - ((nHeight - 10000) * 0.01)) * COIN; if we keep 10K reward
I will change block reward decrease as it was planned (from 10,000 it will count down with 0.01 steps)
Working code for that is:
 nSubsidy = (3100 - ((nHeight * 0.01) -310000)) - 300000;