Add CHECKSEQUENCEVERIFY softfork through BIP9

This commit is contained in:
Pieter Wuille
2016-02-20 23:37:13 +01:00
committed by BtcDrak
parent 6ff0b9f96e
commit ee40924fef
4 changed files with 23 additions and 1 deletions

View File

@@ -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));