Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Bitcoin Cash - Fork 1:1 of Bitcoin - Pro on-chain scaling - Cheaper fees
by
Grrizz
on 22/08/2017, 18:15:39 UTC


The fact that it says 300% must be a capped limit because it should be closer to a 600% increase but there is a maximum the difficulty can increase we will find out in a couple of hours what exactly will happen but expect miners to jump back over to BTC and a day or so after the bitcoin difficulty will drop a bit making it even more profitable

Someone wrote earlier in this thread that it's capped at x4, so current difficulty plus 300% is the same thing.
 

Ah yea that is correct.

Code:
if (nActualTimespan < nTargetTimespan/4)
        nActualTimespan = nTargetTimespan/4;
if (nActualTimespan > nTargetTimespan*4)
        nActualTimespan = nTargetTimespan*4;

No more than 4x and no less than 1/4x