Post
Topic
Board Altcoin Discussion
Re: ANN: ApeCoin
by
bee7
on 18/12/2013, 17:03:42 UTC
Algorithm: Scrypt
Max Coins: 1,000,000,000 APE
Target Spacing: 1 minute
Target Interval: 1 day
Subsidy: 10000 APE
Difficulty at press-time: 0.847843
So far: 10451 blocks


How do you explain this:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 10000 * COIN;

    return nSubsidy + nFees;
}

Your block reward in no way depends on the height of the chain. Apecoin has unlimited supply. Don't tell that you will insert the proper handling later: these parameters being declared from the very beginning must be coded from the very beginning and should not be changed for the whole life of coin.