From 0f95720639c743df2546730a5549eb7ead610529 Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Wed, 24 Mar 2021 20:35:24 +1000 Subject: BIP341: bip9 speedy trial parameters --- bip-0341.mediawiki | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bip-0341.mediawiki b/bip-0341.mediawiki index 1e579e1..c464b59 100644 --- a/bip-0341.mediawiki +++ b/bip-0341.mediawiki @@ -298,6 +298,16 @@ This BIP is deployed concurrently with [[bip-0342.mediawiki|BIP342]]. For Bitcoin signet, these BIPs are always active. +For Bitcoin mainnet, these BIPs will be deployed by "version bits" with the name "taproot" and bit 2, using BIP9 modified to use a lower threshold, and with an additional ''min_activation_height'' parameter and changing the state transition logic for LOCKED_IN to the following: + + case LOCKED_IN: + if (block.nHeight < min_activation_height) { + return LOCKED_IN; + } + return ACTIVE; + +For Bitcoin mainnet, the BIP9 starttime is epoch timestamp 1619222400 (midnight 24 April 2021 UTC), BIP9 timeout is epoch timestamp 1628640000 (midnight 11 August 2021 UTC), the threshold is 1815 blocks (90%) instead of 1916 blocks (95%), and the min_activation_height is block 709632 (expected approximately 12 November 2021). + == Backwards compatibility == As a soft fork, older software will continue to operate without modification. Non-upgraded nodes, however, will consider all SegWit version 1 witness programs as anyone-can-spend scripts. -- cgit v1.2.3