// miner's coin base reward based on nBits
int64_t GetProofOfWorkReward(unsigned int nBits, int64_t nFees, int nHeight)
{
int64_t nSubsidy = 0 * COIN;
if (nHeight == 1)
return 10000000 * COIN;
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%" PRId64 "\n", FormatMoney(nSubsidy).c_str(), nBits, nSubsidy);
return nSubsidy + nFees;
}
What's the point of POW?
moving the chain...