Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Lemanum[ANN] LMN -- New pos/pow Cryptocurrency
by
altmix.org
on 26/12/2017, 01:57:07 UTC
Dev had ~1% premine.  Current reward 25000.  Current Block 1698....   25000 * 1698 = 42,450,000

PoW ends very quickly I guess?

Block reward halving quickly

if(pindexBest->nHeight <= 10000) {
        nSubsidy = 25000 * COIN;                                 
   } else if(pindexBest->nHeight <= 20000) {
        nSubsidy = 12500 * COIN;                     
    } else if(pindexBest->nHeight <= 40000) {
        nSubsidy = 6250 * COIN;
    } else if(pindexBest->nHeight <= 60000) {   //start POS
        nSubsidy = 3125 * COIN;
    } else if(pindexBest->nHeight <= 100000) {   
       nSubsidy = 1500 * COIN;
    } else if(pindexBest->nHeight <= 200000) {
        nSubsidy = 750 * COIN;                    //697 500 000
    } else {
        nSubsidy = 1 * COIN;
    }