Post
Topic
Board Announcements (Altcoins)
Re: [ANN][AC]AsiaCoin - Version1.0.0.1 Released - Please Upgrade your wallet
by
goldmann
on 02/05/2014, 11:03:50 UTC
Ok guys help me out with what I am seeing in the block explorer it shows 3,381,267,977 Coins
WTF I thought the MAX was 360 million MAX this figure already shows 3.3 BILLION

i took the explorer offline and will check this now manually. give me some minutes. i am just waiting for
the dev to check this...


EVERYTHING IS OKAY!!  Smiley
wow for a moment i was panicing.. lol

Code:
static const int64 nMinSubsidy = 1 * COIN;
static const int CUTOFF_HEIGHT = 20160; // Height at the end of 14 days
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees)
{
int64 nSubsidy = 10000 * COIN;

if(nHeight <= 1000)
{
nSubsidy = 100 * COIN;
return nSubsidy + nFees;
}
else if(nHeight > 10080)
{
if(nHeight > CUTOFF_HEIGHT)
{
return nMinSubsidy + nFees;
}

nSubsidy = 5000 * COIN;
return nSubsidy + nFees;
}

    return nSubsidy + nFees;
}


NO WORRIES. WE CHECKED THE ASIACOIN SOURCECODES: https://github.com/AsiaCoin/AsiaCoin/blob/master/src/main.cpp
and seems its just an viewbug in the blockexplorer. we will fix this asap.