diff options
| author | Jorge Timón <[email protected]> | 2016-10-14 00:57:18 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2016-10-18 13:17:38 +0200 |
| commit | b26a7b5377f400760f49ba3aed468469ef27786e (patch) | |
| tree | dbdc011ae0688c3a8e964c11c79c3500bd1708e3 /src/rpc/mining.cpp | |
| parent | Merge #8817: update bitcoin-tx to output witness data (diff) | |
| download | discoin-b26a7b5377f400760f49ba3aed468469ef27786e.tar.xz discoin-b26a7b5377f400760f49ba3aed468469ef27786e.zip | |
RPC: Chainparams: Remove Chainparams::fTestnetToBeDeprecatedFieldRPC
Diffstat (limited to 'src/rpc/mining.cpp')
| -rw-r--r-- | src/rpc/mining.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 6b13aa5ba..fa64ce8fa 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -230,7 +230,6 @@ UniValue getmininginfo(const UniValue& params, bool fHelp) " \"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" "}\n" "\nExamples:\n" @@ -250,7 +249,6 @@ UniValue getmininginfo(const UniValue& params, bool fHelp) obj.push_back(Pair("errors", GetWarnings("statusbar"))); obj.push_back(Pair("networkhashps", getnetworkhashps(params, false))); obj.push_back(Pair("pooledtx", (uint64_t)mempool.size())); - obj.push_back(Pair("testnet", Params().TestnetToBeDeprecatedFieldRPC())); obj.push_back(Pair("chain", Params().NetworkIDString())); return obj; } |