Skip to content

Commit ffe33df

Browse files
committed
chainparams: drop versionbits threshold to 90% for mainnnet and signet
1 parent f054f6b commit ffe33df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chainparams.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class CMainParams : public CChainParams {
7878
consensus.nPowTargetSpacing = 10 * 60;
7979
consensus.fPowAllowMinDifficultyBlocks = false;
8080
consensus.fPowNoRetargeting = false;
81-
consensus.nRuleChangeActivationThreshold = 1916; // 95% of 2016
81+
consensus.nRuleChangeActivationThreshold = 1815; // 90% of 2016
8282
consensus.nMinerConfirmationWindow = 2016; // nPowTargetTimespan / nPowTargetSpacing
8383
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28;
8484
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = Consensus::BIP9Deployment::NEVER_ACTIVE;
@@ -332,7 +332,7 @@ class SigNetParams : public CChainParams {
332332
consensus.nPowTargetSpacing = 10 * 60;
333333
consensus.fPowAllowMinDifficultyBlocks = false;
334334
consensus.fPowNoRetargeting = false;
335-
consensus.nRuleChangeActivationThreshold = 1916; // 95% of 2016
335+
consensus.nRuleChangeActivationThreshold = 1815; // 90% of 2016
336336
consensus.nMinerConfirmationWindow = 2016; // nPowTargetTimespan / nPowTargetSpacing
337337
consensus.MinBIP9WarningHeight = 0;
338338
consensus.powLimit = uint256S("00000377ae000000000000000000000000000000000000000000000000000000");

0 commit comments

Comments
 (0)