From 3a59ce084de0266c56df1e9ffb2fcd38e0ca4ccd Mon Sep 17 00:00:00 2001 From: Sunny King Date: Wed, 1 Aug 2012 15:03:50 +0100 Subject: [PATCH 1/1] PPCoin: RPC command 'getdifficulty' shows proof-of-stake difficulty as well --- src/bitcoinrpc.cpp | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 5763d34..b2ff091 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -271,9 +271,12 @@ Value getdifficulty(const Array& params, bool fHelp) if (fHelp || params.size() != 0) throw runtime_error( "getdifficulty\n" - "Returns the proof-of-work difficulty as a multiple of the minimum difficulty."); + "Returns difficulty as a multiple of the minimum difficulty."); - return GetDifficulty(); + Object obj; + obj.push_back(Pair("proof-of-work", GetDifficulty())); + obj.push_back(Pair("proof-of-stake", GetDifficulty(GetLastBlockIndex(pindexBest, true)))); + return obj; } -- 1.7.1