https://github.com/dicecointeam/dicecoin/blob/master/src/main.cpp#L957
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;
}
So why did you write?
Specifications
Total POW coins: 10,000,000 DC
sorry.
update op.
Specifications
Total coins(POW+POS): 200,000,000 DC
Total POW coins: 10,000,000 DC
Block time: 1 minute