Post
Topic
Board Announcements (Altcoins)
Re: [ANN] $XQN Quotient Financial Network | PoW Scrypt, PoS Blake-256 | UPDATE NOW
by
Zenithar
on 02/04/2015, 22:13:23 UTC
where's dev?Huh is he the one dumping all those coins??? How can one trust this coin when someone is staking thousands of coins so fast and dumping it all! Can someone check the code??? No reason for dev not showing up even scammer once in a while post in their scan coins threads.
coin sentiment is very very low!

Every block stakes for 16.18 XQN or lower.  

Code:
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees, int nHeight)
{
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);
    int64_t nSubsidyLimit = 618 * COIN;

    [b]if(nHeight >= 74000)
nSubsidyLimit = 16.18 * COIN;[/b]

    nSubsidy = min(nSubsidy, nSubsidyLimit);

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}

https://github.com/CedricProfit/Quotient/blob/master/src/main.cpp