Add BIP65 to getblockchaininfo softforks list

Rebased-From: 54a200ac9ad8909303ccf1ac49c291e0c2b5fb23
This commit is contained in:
Peter Todd 2015-09-27 14:32:10 -04:00
parent ba1da90b33
commit 6af25b0f64
No known key found for this signature in database
GPG Key ID: C085F21CE7F4B9DC
1 changed files with 1 additions and 0 deletions

View File

@ -547,6 +547,7 @@ Value getblockchaininfo(const Array& params, bool fHelp)
Array softforks;
softforks.push_back(SoftForkDesc("bip34", 2, tip, consensusParams));
softforks.push_back(SoftForkDesc("bip66", 3, tip, consensusParams));
softforks.push_back(SoftForkDesc("bip65", 4, tip, consensusParams));
obj.push_back(Pair("softforks", softforks));
if (fPruneMode)