summaryrefslogtreecommitdiff
path: root/bip-0009.mediawiki
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2016-03-30 22:22:09 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2016-05-22 10:46:04 +0000
commit4e9591d8c787f0d32b5a79862c8570300dc742d6 (patch)
tree510fb893ed41492aeeb9dfecb0d5841bd1262231 /bip-0009.mediawiki
parentb8907db95076abe39596934d4f04a3b8ffce0160 (diff)
downloadbips-4e9591d8c787f0d32b5a79862c8570300dc742d6.tar.xz
BIP 9: Add softfork deployment "name"
Diffstat (limited to 'bip-0009.mediawiki')
-rw-r--r--bip-0009.mediawiki2
1 files changed, 2 insertions, 0 deletions
diff --git a/bip-0009.mediawiki b/bip-0009.mediawiki
index 6ea0ddd..a8604fa 100644
--- a/bip-0009.mediawiki
+++ b/bip-0009.mediawiki
@@ -24,6 +24,7 @@ In addition, BIP 34 made the integer comparison (nVersion >= 2) a consensus rule
Each soft fork deployment is specified by the following per-chain parameters (further elaborated below):
+# The '''name''' specifies a very brief description of the soft fork, reasonable for use as an identifier.
# The '''bit''' determines which bit in the nVersion field of the block is to be used to signal the soft fork lock-in and activation. It is chosen from the set {0,1,2,...,28}.
# The '''starttime''' specifies a minimum median time past of a block at which the bit gains its meaning.
# The '''timeout''' specifies a time at which the deployment is considered failed. If the median time past of a block >= timeout and the soft fork has not yet locked in (including this block's bit state), the deployment is considered failed on all descendants of the block.
@@ -32,6 +33,7 @@ Each soft fork deployment is specified by the following per-chain parameters (fu
The following guidelines are suggested for selecting these parameters for a soft fork:
+# '''name''' should be selected such that no two softforks, concurrent or otherwise, ever use the same name.
# '''bit''' should be selected such that no two concurrent softforks use the same bit.
# '''starttime''' should be set to some date in the future, approximately one month after a software release date including the soft fork. This allows for some release delays, while preventing triggers as a result of parties running pre-release software.
# '''timeout''' should be 1 year (31536000 seconds) after starttime.