aboutsummaryrefslogtreecommitdiff
path: root/src/rpcblockchain.cpp
diff options
context:
space:
mode:
authorPeter Todd <pete@petertodd.org>2015-09-27 14:32:10 -0400
committerPeter Todd <pete@petertodd.org>2015-10-08 17:37:10 +0200
commit65ef3723024881b7b21597bb784503094a323fb4 (patch)
tree507c6b2d9f2880fced0700aaade8a2000667db52 /src/rpcblockchain.cpp
parentcde7ab2d4ea7fbf71497c42edc1a82b9c8e6c91d (diff)
downloadbitcoin-65ef3723024881b7b21597bb784503094a323fb4.tar.xz
Add BIP65 to getblockchaininfo softforks list
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 545ac12890..20c0c1fb2f 100644
--- a/src/rpcblockchain.cpp
+++ b/src/rpcblockchain.cpp
@@ -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)