Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Corecoin (COR) | Fresh | Blockchain 2.0 Project
by
layer1gfx
on 30/07/2015, 20:39:58 UTC

I can't wait to double spend this one.

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

     if(nHeight == 1)
     {
        nSubsidy = 9333333 * COIN;
     }

    // Subsidy is cut in half every 4000 blocks
    nSubsidy >>= (nHeight / 4000);

    return nSubsidy + nFees;
}


When nHeight hits 52,000 then nSubsidy is 0 and the network is running on fees. No one will mine it and you can do what you want with a few MHs.

In fact, at about 7/block the reward won't be enough to secure the network in two weeks.

There is a reason all the big PoW only coins have a very long halving.

Prediction if the dev doesn't put in PoS or change the schedule: coin dead in 3 weeks.

Good luck.  Smiley


could you explain this a little bit more for not so experienced altcoin fans?