Merge #8461: document return value of networkhashps for getmininginfo RPC endpoint

65f4532 document return value of networkhashps for getmininginfo RPC endpoint (Jameson Lopp)
This commit is contained in:
Wladimir J. van der Laan 2016-08-19 12:18:09 +02:00 committed by Alexander Block
parent 80573f2bf4
commit 5bf3dadcb6

View File

@ -231,11 +231,11 @@ UniValue getmininginfo(const UniValue& params, bool fHelp)
" \"currentblocksize\": nnn, (numeric) The last block size\n"
" \"currentblocktx\": nnn, (numeric) The last block transaction\n"
" \"difficulty\": xxx.xxxxx (numeric) The current difficulty\n"
" \"errors\": \"...\" (string) Current errors\n"
" \"networkhashps\": n (numeric) An estimate of the number of hashes per second the network is generating to maintain 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 mem pool\n"
" \"testnet\": true|false (boolean) If using testnet or not\n"
" \"chain\": \"xxxx\", (string) current network name as defined in BIP70 (main, test, regtest)\n"
" \"chain\": \"xxxx\", (string) current network name as defined in BIP70 (main, test, regtest)\n"
"}\n"
"\nExamples:\n"
+ HelpExampleCli("getmininginfo", "")