aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmining.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2015-08-01 11:44:25 +0100
committerJ Ross Nicoll <[email protected]>2015-10-31 14:49:39 +0000
commit5731f4f3c6dff84d6c5264954ba15e5b991abe38 (patch)
tree0e162847a682e9074ec7fd9598c3d28b4768b858 /src/rpcmining.cpp
parentIntroduce basic Dogecoin branding (diff)
downloaddiscoin-5731f4f3c6dff84d6c5264954ba15e5b991abe38.tar.xz
discoin-5731f4f3c6dff84d6c5264954ba15e5b991abe38.zip
Update Bitcoin references and addresses in strings to Dogecoin equivalents
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r--src/rpcmining.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp
index da7ca2594..673b04136 100644
--- a/src/rpcmining.cpp
+++ b/src/rpcmining.cpp
@@ -102,7 +102,7 @@ Value getgenerate(const Array& params, bool fHelp)
throw runtime_error(
"getgenerate\n"
"\nReturn if the server is set to generate coins or not. The default is false.\n"
- "It is set with the command line argument -gen (or bitcoin.conf setting gen)\n"
+ "It is set with the command line argument -gen (or dogecoin.conf setting gen)\n"
"It can also be set with the setgenerate call.\n"
"\nResult\n"
"true|false (boolean) If the server is set to generate coins or not\n"
@@ -433,10 +433,10 @@ Value getblocktemplate(const Array& params, bool fHelp)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode");
if (vNodes.empty())
- throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Bitcoin is not connected!");
+ throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Dogecoin is not connected!");
if (IsInitialBlockDownload())
- throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Bitcoin is downloading blocks...");
+ throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Dogecoin is downloading blocks...");
static unsigned int nTransactionsUpdatedLast;