|
|
|
@ -199,10 +199,10 @@ UniValue getmininginfo(const JSONRPCRequest& request)
@@ -199,10 +199,10 @@ UniValue getmininginfo(const JSONRPCRequest& request)
|
|
|
|
|
" \"currentblockweight\": nnn, (numeric) The last block weight\n" |
|
|
|
|
" \"currentblocktx\": nnn, (numeric) The last block transaction\n" |
|
|
|
|
" \"difficulty\": xxx.xxxxx (numeric) The current difficulty\n" |
|
|
|
|
" \"errors\": \"...\" (string) Current errors\n" |
|
|
|
|
" \"networkhashps\": nnn, (numeric) The network hashes per second\n" |
|
|
|
|
" \"pooledtx\": n (numeric) The size of the mempool\n" |
|
|
|
|
" \"chain\": \"xxxx\", (string) current network name as defined in BIP70 (main, test, regtest)\n" |
|
|
|
|
" \"errors\": \"...\" (string) (string) any network and blockchain warnings\n" |
|
|
|
|
"}\n" |
|
|
|
|
"\nExamples:\n" |
|
|
|
|
+ HelpExampleCli("getmininginfo", "") |
|
|
|
@ -217,10 +217,10 @@ UniValue getmininginfo(const JSONRPCRequest& request)
@@ -217,10 +217,10 @@ UniValue getmininginfo(const JSONRPCRequest& request)
|
|
|
|
|
obj.push_back(Pair("currentblockweight", (uint64_t)nLastBlockWeight)); |
|
|
|
|
obj.push_back(Pair("currentblocktx", (uint64_t)nLastBlockTx)); |
|
|
|
|
obj.push_back(Pair("difficulty", (double)GetDifficulty())); |
|
|
|
|
obj.push_back(Pair("errors", GetWarnings("statusbar"))); |
|
|
|
|
obj.push_back(Pair("networkhashps", getnetworkhashps(request))); |
|
|
|
|
obj.push_back(Pair("pooledtx", (uint64_t)mempool.size())); |
|
|
|
|
obj.push_back(Pair("chain", Params().NetworkIDString())); |
|
|
|
|
obj.push_back(Pair("errors", GetWarnings("statusbar"))); |
|
|
|
|
return obj; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|