|
|
|
@ -253,6 +253,7 @@ Value getmininginfo(const Array& params, bool fHelp)
@@ -253,6 +253,7 @@ Value getmininginfo(const Array& params, bool fHelp)
|
|
|
|
|
" \"hashespersec\": n (numeric) The hashes per second of the generation, or 0 if no generation.\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" |
|
|
|
|
"}\n" |
|
|
|
|
"\nExamples:\n" |
|
|
|
|
+ HelpExampleCli("getmininginfo", "") |
|
|
|
@ -268,7 +269,8 @@ Value getmininginfo(const Array& params, bool fHelp)
@@ -268,7 +269,8 @@ Value getmininginfo(const Array& params, bool fHelp)
|
|
|
|
|
obj.push_back(Pair("genproclimit", (int)GetArg("-genproclimit", -1))); |
|
|
|
|
obj.push_back(Pair("networkhashps", getnetworkhashps(params, false))); |
|
|
|
|
obj.push_back(Pair("pooledtx", (uint64_t)mempool.size())); |
|
|
|
|
obj.push_back(Pair("testnet", Params().RPCisTestNet())); |
|
|
|
|
obj.push_back(Pair("testnet", Params().NetworkID() == CChainParams::TESTNET)); |
|
|
|
|
obj.push_back(Pair("chain", Params().NetworkIDString())); |
|
|
|
|
#ifdef ENABLE_WALLET |
|
|
|
|
obj.push_back(Pair("generate", getgenerate(params, false))); |
|
|
|
|
obj.push_back(Pair("hashespersec", gethashespersec(params, false))); |
|
|
|
|