Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DC] DiceCoin |X13|POW/POS| 4 days mining only| Net Hashrate 31G|
by
dicecointeam
on 23/06/2014, 15:25:15 UTC
The dev has lied to you.

Dicecoin has ~20% premine, not 1%.

https://twitter.com/Altcoinity/status/481093221259292673


https://github.com/dicecointeam/dicecoin/blob/master/src/main.cpp#L957

Code:

static const int64_t MAX_MONEY = 200000000 * COIN;


int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 2000 * COIN;
       
    if (pindexBest->nHeight == 1)
      {
        int64_t nSubsidy = 2000000 * COIN;
        return nSubsidy + nFees;
      }else if (pindexBest->nHeight <= 100)
      {
        int64_t nSubsidy = 1 * COIN;
        return nSubsidy + nFees;
      }
      return nSubsidy + nFees;
}