aboutsummaryrefslogtreecommitdiff
path: root/src/rpcblockchain.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-02-20 23:37:13 +0100
committerBtcDrak <btcdrak@gmail.com>2016-03-18 09:28:40 +0000
commitee40924fef1e8835b9ef865360b126952ad8359d (patch)
tree44eed691af008d103ad510a8f6b9f50295313ebe /src/rpcblockchain.cpp
parent6ff0b9f96ef83dc11f70e1ab66d815fb6c971e60 (diff)
downloadbitcoin-ee40924fef1e8835b9ef865360b126952ad8359d.tar.xz
Add CHECKSEQUENCEVERIFY softfork through BIP9
Diffstat (limited to 'src/rpcblockchain.cpp')
-rw-r--r--src/rpcblockchain.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp
index 4fd2e6d05c..f0bcafafe9 100644
--- a/src/rpcblockchain.cpp
+++ b/src/rpcblockchain.cpp
@@ -681,6 +681,7 @@ UniValue getblockchaininfo(const UniValue& params, bool fHelp)
softforks.push_back(SoftForkDesc("bip34", 2, tip, consensusParams));
softforks.push_back(SoftForkDesc("bip66", 3, tip, consensusParams));
softforks.push_back(SoftForkDesc("bip65", 4, tip, consensusParams));
+ bip9_softforks.push_back(BIP9SoftForkDesc("csv", consensusParams, Consensus::DEPLOYMENT_CSV));
obj.push_back(Pair("softforks", softforks));
obj.push_back(Pair("bip9_softforks", bip9_softforks));