// miner's POW block rewards (Note: 1st block = premine of 1%: 27068 coins out of 2,706,880 maximum coins in PoW period)
int64_t GetProofOfWorkReward(int64_t nFees)
{
int64_t nSubsidy = 700 * COIN;
if(pindexBest->nHeight <= 1000)
{
nSubsidy = 700 * COIN;
}
else if(pindexBest->nHeight <= 2000)
{
nSubsidy = 2500 * COIN;
}
else if(pindexBest->nHeight <= 6000)
{
nSubsidy = 1500 * COIN;
}
else if(pindexBest->nHeight < 8641)
{
nSubsidy = 303 * COIN;
}
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
return nSubsidy + nFees;
}
The original intent was to premine 1%, but there was no premine in the first block. Did the dev change their mind or are they hiding something elsewhere? The lack of github by now, or even at launch for that matter, is suspect. Zipping the code and uploading to mega takes at least as much effort. It makes no sense.
This is clearly just an artifact of the code being forked, either from this repo (MastiffCoin) or some other later clone of it. Note that every single coin in existence is forked from somewhere as a starting point, and since MastiffCoin is known to have a very solid codebase there have been many forks of it.
Just a clone of a previous coin, as are all.
This coin is starting to look good, distribution isn't too bad either, it's all on the DEV's to deliver now.