Skip to content

Commit 7cb0bcb

Browse files
author
MarcoFalke
committed
Merge #21686: Speedy trial activation parameters for Taproot
f979b32 Add mainnet and testnet taproot activation params (Andrew Chow) Pull request description: Adds the activation parameters for taproot as specified in bitcoin/bips#1104 ACKs for top commit: gmaxwell: utACK f979b32 ajtowns: ACK f979b32 instagibbs: ACK f979b32 clarkmoody: ACK f979b32 Sjors: ACK f979b32 jonatack: utACK f979b32 verified with the BIP draft Tree-SHA512: f95538bcec46c36f9532a99fcf697b143083c25b2427dd578b88514add0a807371530c18f0a8ed040dc885ad6eca8234235e1d762f6f837eafc5daed856a9dcf
2 parents a5e756b + f979b32 commit 7cb0bcb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/chainparams.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ class CMainParams : public CChainParams {
8787

8888
// Deployment of Taproot (BIPs 340-342)
8989
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].bit = 2;
90-
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nStartTime = Consensus::BIP9Deployment::NEVER_ACTIVE;
91-
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT;
92-
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].min_activation_height = 0; // No activation delay
90+
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nStartTime = 1619222400; // April 24th, 2021
91+
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nTimeout = 1628640000; // August 11th, 2021
92+
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].min_activation_height = 709632; // Approximately November 12th, 2021
9393

9494
consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000001533efd8d716a517fe2c5008");
9595
consensus.defaultAssumeValid = uint256S("0x0000000000000000000b9d2ec5a352ecba0592946514a92f14319dc2b367fc72"); // 654683
@@ -206,8 +206,8 @@ class CTestNetParams : public CChainParams {
206206

207207
// Deployment of Taproot (BIPs 340-342)
208208
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].bit = 2;
209-
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nStartTime = Consensus::BIP9Deployment::NEVER_ACTIVE;
210-
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nTimeout = Consensus::BIP9Deployment::NO_TIMEOUT;
209+
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nStartTime = 1619222400; // April 24th, 2021
210+
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].nTimeout = 1628640000; // August 11th, 2021
211211
consensus.vDeployments[Consensus::DEPLOYMENT_TAPROOT].min_activation_height = 0; // No activation delay
212212

213213
consensus.nMinimumChainWork = uint256S("0x0000000000000000000000000000000000000000000001db6ec4ac88cf2272c6");

0 commit comments

Comments
 (0)