aboutsummaryrefslogtreecommitdiff
path: root/src/consensus
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2016-04-23 23:30:20 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2016-06-06 17:10:22 +0000
commitd3df40e51a29bd98830043dd19829126390d1bc4 (patch)
treeedfd8caa0807b98e7ab56b91729018040f8fd8a6 /src/consensus
parent71527a0f31ae67edad0a7fcda59c75a6ce5666ca (diff)
downloadbitcoin-d3df40e51a29bd98830043dd19829126390d1bc4.tar.xz
Implement BIP 9 GBT changes
- BIP9DeploymentInfo struct for static deployment info - VersionBitsDeploymentInfo: Avoid C++11ism by commenting parameter names - getblocktemplate: Make sure to set deployments in the version if it is LOCKED_IN - In this commit, all rules are considered required for clients to support
Diffstat (limited to 'src/consensus')
-rw-r--r--src/consensus/params.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/consensus/params.h b/src/consensus/params.h
index 4f3480b89b..6c4cc49479 100644
--- a/src/consensus/params.h
+++ b/src/consensus/params.h
@@ -16,6 +16,7 @@ enum DeploymentPos
{
DEPLOYMENT_TESTDUMMY,
DEPLOYMENT_CSV, // Deployment of BIP68, BIP112, and BIP113.
+ // NOTE: Also add new deployments to VersionBitsDeploymentInfo in versionbits.cpp
MAX_VERSION_BITS_DEPLOYMENTS
};