EDIT: Just saw the block height, is that because of the ICO?
yup it is, look at the money supply, its correct, they did not include the full premine in block #1 for any reason
pool list updated:
http://www.backup-pool.com
Interesting ISO mining in the Source:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
int64_t nSubsidy = 10 * COIN;
if (pindexBest->nHeight <= 10000)
{
nSubsidy = 100 * COIN;
}
else if (pindexBest->nHeight >= 10001)
{
nSubsidy = 10 * COIN;
}
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
return nSubsidy + nFees;
}
Source:
https://github.com/darkgoldcoin/darkgoldcoin/blob/master/src/main.cpp#L970
So actually the first "normal" POW Block was 10001 - looks good so far.