From f416446b0fca307f68dbb8ce21c407197bbd1085 Mon Sep 17 00:00:00 2001 From: Zannick Date: Tue, 8 Feb 2022 17:40:33 -0800 Subject: [PATCH 1/3] [Consensus] Update main chain POW end to supply end As this will affect consensus sometime in November this year, the release this is included in will be a mandatory release. --- src/chainparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 08ef5c5e99..45cb66776f 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -366,7 +366,7 @@ class CMainParams : public CChainParams { nKernelModulus = 100; nCoinbaseMaturity = 100; nProofOfFullNodeRounds = 4; - nLastPOWBlock = 2000000; + nLastPOWBlock = 9816000; // Continue POW until supply creation ends nHeightSupplyCreationStop = 9816000; //Should create very close to 300m coins at this time nTimeEnforceWeightReduction = 1548619029; //Stake weight must be reduced for higher denominations nHeightProtocolBumpEnforcement = 86350; // 50 blocks before superblock From e28dd8267f70689d54486d913e38805919c1137f Mon Sep 17 00:00:00 2001 From: Zannick Date: Tue, 8 Feb 2022 17:40:33 -0800 Subject: [PATCH 2/3] [Consensus] Update main chain POW end to supply end As this will affect consensus sometime in November this year, the release this is included in will be a mandatory release. --- src/chainparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 4b3b97b975..e14b0e149a 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -366,7 +366,7 @@ class CMainParams : public CChainParams { nKernelModulus = 100; nCoinbaseMaturity = 100; nProofOfFullNodeRounds = 4; - nLastPOWBlock = 2000000; + nLastPOWBlock = 9816000; // Continue POW until supply creation ends nHeightSupplyCreationStop = 9816000; //Should create very close to 300m coins at this time nTimeEnforceWeightReduction = 1548619029; //Stake weight must be reduced for higher denominations nHeightProtocolBumpEnforcement = 86350; // 50 blocks before superblock From 9a3becb259db209d837a7b92639392037edf399d Mon Sep 17 00:00:00 2001 From: seanPhill Date: Wed, 22 Jun 2022 20:21:26 -0500 Subject: [PATCH 3/3] Update chainparams.cpp The change for the main chain should apply to testnet, devnet and regtest also. --- src/chainparams.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index e14b0e149a..d2e18a0840 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -545,7 +545,7 @@ class CTestNetParams : public CChainParams { nKernelModulus = 10; nCoinbaseMaturity = 10; nProofOfFullNodeRounds = 4; - nLastPOWBlock = 2000000; + nLastPOWBlock = 9816000; // Continue POW until supply creation ends nHeightSupplyCreationStop = 9816000; //Should create very close to 300m coins at this time nTimeEnforceWeightReduction = 1548849600; //Stake weight must be reduced for higher denominations (GMT): Wednesday, January 30, 2019 12:00:00 PM @@ -716,7 +716,7 @@ class CDevNetParams : public CChainParams { nKernelModulus = 10; nCoinbaseMaturity = 10; nProofOfFullNodeRounds = 4; - nLastPOWBlock = 2000000; + nLastPOWBlock = 9816000; // Continue POW until supply creation ends nHeightSupplyCreationStop = 9816000; //Should create very close to 300m coins at this time nTimeEnforceWeightReduction = 1548849600; //Stake weight must be reduced for higher denominations (GMT): Wednesday, January 30, 2019 12:00:00 PM @@ -789,7 +789,7 @@ class CRegTestParams : public CChainParams { nPruneAfterHeight = 1000; nConsecutivePoWHeight = 1000000; - nLastPOWBlock = 2000000; + nLastPOWBlock = 9816000; // Continue POW until supply creation ends nHeightSupplyCreationStop = 9816000; // These need to be set before the genesis block is checked @@ -868,7 +868,7 @@ class CRegTestParams : public CChainParams { nKernelModulus = 10; nCoinbaseMaturity = 10; nProofOfFullNodeRounds = 4; - nLastPOWBlock = 2000000; + nLastPOWBlock = 9816000; // Continue POW until supply creation ends nHeightSupplyCreationStop = 9816000; //Should create very close to 300m coins at this time nTimeEnforceWeightReduction = 1548849600; //Stake weight must be reduced for higher denominations (GMT): Wednesday, January 30, 2019 12:00:00 PM