diff options
| author | Pieter Wuille <[email protected]> | 2016-02-20 23:37:13 +0100 |
|---|---|---|
| committer | BtcDrak <[email protected]> | 2016-03-18 08:09:06 +0000 |
| commit | 65751a3cf2421a9419172949cad9dc49b7383551 (patch) | |
| tree | d6629a99099ed077b2a86f131ac5f3206f494d79 /src/rpc/blockchain.cpp | |
| parent | Merge #7575: Minimal BIP9 implementation (diff) | |
| download | discoin-65751a3cf2421a9419172949cad9dc49b7383551.tar.xz discoin-65751a3cf2421a9419172949cad9dc49b7383551.zip | |
Add CHECKSEQUENCEVERIFY softfork through BIP9
Diffstat (limited to 'src/rpc/blockchain.cpp')
| -rw-r--r-- | src/rpc/blockchain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index a110dff0d..f5d75c20b 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -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)); |