Browse Source

Add BIP65 to getblockchaininfo softforks list

0.13
Peter Todd 9 years ago
parent
commit
65ef372302
No known key found for this signature in database
GPG Key ID: C085F21CE7F4B9DC
  1. 1
      src/rpcblockchain.cpp

1
src/rpcblockchain.cpp

@ -648,6 +648,7 @@ UniValue getblockchaininfo(const UniValue& params, bool fHelp) @@ -648,6 +648,7 @@ UniValue getblockchaininfo(const UniValue& params, bool fHelp)
UniValue softforks(UniValue::VARR);
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)

Loading…
Cancel
Save