aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmining.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2014-03-28 23:13:24 +0000
committerRoss Nicoll <[email protected]>2014-03-28 23:13:24 +0000
commit3fd42567e8925b99ff80455743b176e9536a5a23 (patch)
tree21b8fed0b7226d6e5559f277eff699c6301bd934 /src/rpcmining.cpp
parentReplaced references to Bitcoin with Dogecoin in UI code. (diff)
downloaddiscoin-3fd42567e8925b99ff80455743b176e9536a5a23.tar.xz
discoin-3fd42567e8925b99ff80455743b176e9536a5a23.zip
Replaced references to Bitcoin with Dogecoin/Dogecoin Core as appropriate.
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r--src/rpcmining.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp
index 564f0401f..6d1516db6 100644
--- a/src/rpcmining.cpp
+++ b/src/rpcmining.cpp
@@ -298,10 +298,10 @@ Value getwork(const Array& params, bool fHelp)
);
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...");
typedef map<uint256, pair<CBlock*, CScript> > mapNewBlock_t;
static mapNewBlock_t mapNewBlock; // FIXME: thread safety
@@ -480,10 +480,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...");
// Update block
static unsigned int nTransactionsUpdatedLast;