Post
Topic
Board Announcements (Altcoins)
Re: [GPUC] GPU Coin | Mandatory Wallet Update
by
micryon
on 23/04/2014, 22:33:36 UTC
Hi guys,

What is the new halving schedule supposed to be like? Thanks.

Check here.. i've made it pretty clear now in the code: https://github.com/micryon/GPUcoin/blob/master/src/main.cpp#L1102


Quote
   if (nHeight == 1)
        nSubsidy = 400000000 * COIN; // premine for GPUcoin IPO Investors
    else if (nHeight >1 && nHeight <= 200) //launch at 200 with checkpoints, KGW kicks in at block 180 before that .. all zeroes
     nSubsidy = 0 * COIN;
    else if (nHeight >200 && nHeight <2600) //real start of mining at 2600 (roughly 1 day for this coin.. i think..)
     nSubsidy = 1 * COIN;
    else if (nHeight >= 2600 && nHeight <= 65535) //hard fork
     nSubsidy = 20000*COIN;
    else if (nHeight > 65535 && nHeight <= 315535)
     nSubsidy = 10000*COIN;
    else if (nHeight > 315535 && nHeight <= 565535)
     nSubsidy = 5000*COIN;
    else if (nHeight > 565535 && nHeight <= 815535)
     nSubsidy = 2500*COIN;
    else if (nHeight > 815535 && nHeight <= 5973024)
     nSubsidy = 1250*COIN;
    else
     nSubsidy = 0*COIN;