I can't wait to double spend this one.
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.
