248 million Q2C of which mined over 90%
Sorry to say but you are wrong. 500 million Q2C is correct.
Number of coins Already changed to 500 mil... dev (Kresu) did it (you can check it by your self visiting https://github.com/qubitcoin/QubitCoin/blob/master/src/main.h and then searching for MAX_MONEY = 500000000 * COIN - its there on line 51 (maybe dev forgot to tell you all that; or maybe it was a last thank you gift for you all).Changing MAX_MONEY
DOES NOT increase the total money supply.
Money supply is determined by function GetBlockValue in main.cpp
// Subsidy is cut in half every 60480 blocks (21 days)
nSubsidy >>= (nHeight / 60480);
// Minimum subsidy
if (nSubsidy < nBlockRewardMinimumCoin)
{
nSubsidy = nBlockRewardMinimumCoin;
}
So this is 60480 * 2048 * 2 = 247 million coins.