diff options
| author | Leviathn <[email protected]> | 2016-02-10 18:29:13 -0800 |
|---|---|---|
| committer | Leviathn <[email protected]> | 2016-02-10 18:29:13 -0800 |
| commit | 8d1de43f0cbc79940d870d0ba09c7d28dd812ef8 (patch) | |
| tree | 5f50b7723daa0eb6fe8312e7897148d5abf66b4a /src/rpc/client.cpp | |
| parent | Merge #7500: Correctly report high-S violations (diff) | |
| download | discoin-8d1de43f0cbc79940d870d0ba09c7d28dd812ef8.tar.xz discoin-8d1de43f0cbc79940d870d0ba09c7d28dd812ef8.zip | |
Remove internal miner
This code removes the internal miner which is only useful on Testnet.
This leaves the internal miner that is useful on RegTest intact.
Diffstat (limited to 'src/rpc/client.cpp')
| -rw-r--r-- | src/rpc/client.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index b0e9b6f15..b127a3f1a 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -27,8 +27,6 @@ static const CRPCConvertParam vRPCConvertParams[] = { "stop", 0 }, { "setmocktime", 0 }, { "getaddednodeinfo", 0 }, - { "setgenerate", 0 }, - { "setgenerate", 1 }, { "generate", 0 }, { "getnetworkhashps", 0 }, { "getnetworkhashps", 1 }, @@ -160,4 +158,3 @@ UniValue RPCConvertValues(const std::string &strMethod, const std::vector<std::s return params; } - |