MY BLOCK REWARD PROPOSALhttps://github.com/bstymaster/GlobalBoost-Y.gitPlease note that I haven't yet updated the checkpoints. This is just a preliminary proposal. Awaiting feedback, and then will set the checkpoint pubkey. Before block 29200, the rewards will remain the same.
After that, valid block reward will be 1024, and it will be halving every 240000 blocks.
This will fix the 51% attack vulnerability as it will give adequate incentive to miners.
int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 1024 * COIN;
if (nHeight <17291)
{
nSubsidy = 347 * COIN;
}
else
{
if(nHeight < 29200 )
{
nSubsidy = 50 * COIN;
}
else
{
int halvings = (nHeight-29200) / 240000;
// Force block reward to zero when right shift is undefined.
if (halvings >= 64)
return nFees;
// Subsidy is cut in half every 240,000 blocks which will occur approximately every 4 years.
nSubsidy >>= halvings;
}
}
return nSubsidy + nFees;
}
how you plan to compensate the lost for us ( i hold >20000 BSTY) from mining , buying and pool fee... now if you make the block 1024 all my work is gone from 20 blocks?