SUM cloned of YC's POS system, YC has fixed the issue yet, I don't know may SUM dev can fix it?
The coin reward of PoS function is right and YC changed:
- if(nHeight < (7 * DAILY_BLOCKCOUNT))
- nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
- else if(nHeight < (18 * DAILY_BLOCKCOUNT))
- nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;
+ if(pindexBest->nHeight < (15 * DAILY_BLOCKCOUNT))
+ nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
+ else if(pindexBest->nHeight < (25 * DAILY_BLOCKCOUNT))
+ nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;
What did they change? Only change the condition to be the same with us.
You can't stake at 10% until you have coins that are 24 hours under the new stake percentage, so at the earliest anyone could get 10% is in about 10 hours (10% hit about 14 hours ago). Correct me if I'm wrong Dev, but I'm 99.99% this is the case.
I'll check it.