Hi,
The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)
Anybody?
i am also very interested in an answer to this very important question
Thats the function in the source:
// miner's coin stake reward based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int64 nFees)
{
int64 nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
return nSubsidy + nFees;
}
COIN_YEAR_REWARD = 0.01 (1%)
But I couldn't figure it out when and how often it applies.
Maybe a DEV could help to understand this better?
edit: typo
Thanks for the feedback. So it really is 1%. This basically means it is a pure POW coin, since nobody will be really interested in the PoS rewards, I think.