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;
}