Skip to content

Commit 0f95720

Browse files
committed
BIP341: bip9 speedy trial parameters
1 parent a516c13 commit 0f95720

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

bip-0341.mediawiki

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,16 @@ This BIP is deployed concurrently with [[bip-0342.mediawiki|BIP342]].
298298

299299
For Bitcoin signet, these BIPs are always active.
300300

301+
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:
302+
303+
case LOCKED_IN:
304+
if (block.nHeight < min_activation_height) {
305+
return LOCKED_IN;
306+
}
307+
return ACTIVE;
308+
309+
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).
310+
301311
== Backwards compatibility ==
302312
As a soft fork, older software will continue to operate without modification.
303313
Non-upgraded nodes, however, will consider all SegWit version 1 witness programs as anyone-can-spend scripts.

0 commit comments

Comments
 (0)