diff options
| author | Ross Nicoll <[email protected]> | 2014-03-28 23:13:24 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2014-03-28 23:13:24 +0000 |
| commit | 3fd42567e8925b99ff80455743b176e9536a5a23 (patch) | |
| tree | 21b8fed0b7226d6e5559f277eff699c6301bd934 /src/rpcmining.cpp | |
| parent | Replaced references to Bitcoin with Dogecoin in UI code. (diff) | |
| download | discoin-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.cpp | 8 |
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; |