The PoW cycle for HYPER has ended. We are now fully in Stage 2 of HYPER's PoS cycle which keeps the stake percent at 5% per month until April 13, 2019 where it will drop down to 10% per year stake percent.
A new wallet update will be coming soon, this is a mandatory update.
Great, no big deal, that will be put into effect only after two years from now, well if I am more precise, less than 2 years. But its it good we have discovered this issue now, though really not an issue.
This is the code taken from HYPER 2.0.1:
/** PoS Staking reward */
static const int64_t COIN_YEAR_REWARD1 = 5 * CENT; // 5% per year
static const int64_t COIN_MONTH_REWARD1 = 5 * CENT; // 5% per month
static const int64_t COIN_MONTH_REWARD2 = 10 * CENT; // 10% per month
static const int64_t COIN_MONTH_REWARD3 = 2 * CENT; // 2% per month
and this
// miner's coin stake reward
int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, int64_t nFees)
{
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD1 * 33 / (365 * 33 + 8);
if(pindexBest->nTime > 1493596800) //Mon, 01 May 2017 00:00:00 GMT
nSubsidy = (nCoinAge * COIN_MONTH_REWARD1 * 33 / (365 * 33 + 8)) * 12;
if(pindexBest->nTime > 1586736000) // Mon, 13 Apr 2020 00:00:00 GMT
nSubsidy = (nCoinAge * COIN_MONTH_REWARD2 * 33 / (365 * 33 + 8)) * 12;
if(pindexBest->nTime > 1744502400) // Sun, 13 Apr 2025 00:00:00 GMT
nSubsidy = (nCoinAge * COIN_MONTH_REWARD3 * 33 / (365 * 33 + 8)) * 12;
Who knows what else will need to be fixed during that time.