Let's see if there is still Trust and Honor
1. Inform the pool owners that you want to not allow more than 50 Mh/s per account/IP
2. Release the wallets 3 days after the beginning of POW (avoid the solo farm whales).
Interesting no?
It can't be worse than the situation that expect today: Go whales Go... I with my 2 Mh/s I'll get 0.01 coins each round.
Fair... Trust... Honor
AHHH My first fud.... Did you look at the rewards?
int64_t GetProofOfWorkReward(int64_t nFees)
{
int64_t nSubsidy = 120 * COIN;
if (pindexBest->nHeight+1 == 1)
{
nSubsidy = 3439788 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 50)
{
nSubsidy = 1 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 100)
{
nSubsidy = 50 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 200)
{
nSubsidy = 100 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 400)
{
nSubsidy = 200 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 800)
{
nSubsidy = 400 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 1600)
{
nSubsidy = 800 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 3200)
{
nSubsidy = 1600 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 6400)
{
nSubsidy = 3200 * COIN;
return nSubsidy + nFees;
}
else if (pindexBest->nHeight+1 <= 12800)
{
nSubsidy = 6400 * COIN;
return nSubsidy + nFees;
}
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
return nSubsidy + nFees;
}