Post
Topic
Board Announcements (Altcoins)
Re: [SSD] SonicScrewdriver [15 day PoW 20% POS annually] Sha256. Ninja Launch
by
xrobau
on 10/08/2014, 00:08:29 UTC
I notice that we've just clicked over block 1400, and the reward is still 8000 SSD?

Edit: Looking at the code, the original post is in error. The post currently says 'Rewards halving every 1400 blocks', when it's actually every 1440.

Code:
   if (nHeight == 0)
        nSubsidy = 16 * COIN; // genesis block coinbase is unspendable
    else if (nHeight <= 1440)
        nSubsidy = 8000 * COIN;
    else if (nHeight <= 2880)

(etc).