Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MINT] PoS Rewards and Market Cap Survey & Discussion
by
bottlenecks
on 31/07/2014, 04:29:55 UTC
Quote
static const int64 MAX_MONEY = 70000000000 * COIN;   // 70 bil
https://github.com/mintcoinproject/mintcoin/blob/master/src/main.h#L35

Quote
    // Raise the price as the block approaches full
    if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
    {
        if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
            return MAX_MONEY;
        nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
    }

    if (!MoneyRange(nMinFee))
        nMinFee = MAX_MONEY;
    return nMinFee;
}
https://github.com/mintcoinproject/mintcoin/blob/b24be6bc99b006957e15dfe090615eec130301d6/src/main.cpp#L522

How about that?