Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED
by
ajeef
on 27/06/2014, 11:42:51 UTC
where there is information about what the reward for the block should be? Nowhere find, first blocks were 111 and now on 52 ...
now Block reward

nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;

11111.0 / ((36+51.0)/6.0,2.0))=52

after 17000  dDiff > 75

if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;