Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NSC] New Spring Coin - The real cash-back crypto! Proof-Of-Chain, PoS/PoW
by
Olegcho
on 30/05/2015, 18:38:16 UTC
Only 50% premine
sorry but i don't trust you
You should not trust me. Trust blockchain.

// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{

    int64_t nSubsidy = 50 * COIN;
 
   if(pindexBest->nHeight == 1)
    {
        nSubsidy = 50000000 * COIN;
    }

        else if(pindexBest->nHeight <= 10)                          WTF is this?! Copy pasted from somewhere... such optimisation
    {                                                                             if nHeight <=10 nSubsidy = 50 * COIN;
        nSubsidy = 50 * COIN;                                            if nHeight >10 nSubsidy = 50 * COIN;
    }
        else if(pindexBest->nHeight > 10)
    {
        nSubsidy = 50 * COIN;
    }