From 55332ac06c26f296d1d6f73a8688ee8d2d3f6cc3 Mon Sep 17 00:00:00 2001 From: bumbacoin Date: Thu, 2 Feb 2017 20:41:09 +0800 Subject: [PATCH] Update rpcwallet.cpp speeling --- src/rpcwallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index a48afd5..0f07585 100755 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -88,7 +88,7 @@ Value getinfo(const Array& params, bool fHelp) obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); obj.push_back(Pair("newmint", ValueFromAmount(pwalletMain->GetNewMint()))); obj.push_back(Pair("stake", ValueFromAmount(pwalletMain->GetStake()))); - obj.push_back(Pair("spli threshold", ValueFromAmount(nSplitThreshold))); + obj.push_back(Pair("split threshold", ValueFromAmount(nSplitThreshold))); obj.push_back(Pair("combine threshold", ValueFromAmount(nCombineThreshold))); obj.push_back(Pair("blocks", (int)nBestHeight)); obj.push_back(Pair("timeoffset", (boost::int64_t)GetTimeOffset()));