diff options
| author | Peter Todd <[email protected]> | 2015-09-27 14:32:10 -0400 |
|---|---|---|
| committer | Peter Todd <[email protected]> | 2015-10-08 17:37:10 +0200 |
| commit | 65ef3723024881b7b21597bb784503094a323fb4 (patch) | |
| tree | 507c6b2d9f2880fced0700aaade8a2000667db52 /src/rpcblockchain.cpp | |
| parent | Add RPC tests for the CHECKLOCKTIMEVERIFY (BIP65) soft-fork (diff) | |
| download | discoin-65ef3723024881b7b21597bb784503094a323fb4.tar.xz discoin-65ef3723024881b7b21597bb784503094a323fb4.zip | |
Add BIP65 to getblockchaininfo softforks list
Diffstat (limited to 'src/rpcblockchain.cpp')
| -rw-r--r-- | src/rpcblockchain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 545ac1289..20c0c1fb2 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) |