Skip to content

Commit

Permalink
Update segwit timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
minblock authored Feb 11, 2019
1 parent aeae9fe commit dd3d1a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ class CMainParams : public CChainParams {

// Deployment of BIP68, BIP112, and BIP113.
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0;
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 0; // January 28, 2017
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = 1546200509; // December 30, 2018 @ 8:08pm (UTC)
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 1546200509; // December 30, 2018 @ 8:08pm (UTC)
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = 1577736509; // December 30, 2019 @ 8:08pm (UTC)

// Deployment of SegWit (BIP141, BIP143, and BIP147)
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].bit = 1;
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = 0; // December 27, 2018
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = 1546200509; // December 30, 2018 @ 8:08pm (UTC)
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = 1546200509; // December 30, 2018 @ 8:08pm (UTC)
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = 1577736509; // December 30, 2019 @ 8:08pm (UTC)


// The best chain should have at least this much work.
Expand Down Expand Up @@ -203,7 +203,7 @@ class CTestNetParams : public CChainParams {

// Deployment of SegWit (BIP141, BIP143, and BIP147)
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].bit = 1;
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = 1483228800; // January 1, 2017
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nStartTime = 1483228800; // January 1, 2017-
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = 1517356801; // January 31st, 2018

// The best chain should have at least this much work.
Expand Down

0 comments on commit dd3d1a0

Please sign in to comment.