diff options
| author | Ross Nicoll <[email protected]> | 2015-08-01 11:44:25 +0100 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-10-31 14:49:39 +0000 |
| commit | 5731f4f3c6dff84d6c5264954ba15e5b991abe38 (patch) | |
| tree | 0e162847a682e9074ec7fd9598c3d28b4768b858 /src/rpcserver.cpp | |
| parent | Introduce basic Dogecoin branding (diff) | |
| download | discoin-5731f4f3c6dff84d6c5264954ba15e5b991abe38.tar.xz discoin-5731f4f3c6dff84d6c5264954ba15e5b991abe38.zip | |
Update Bitcoin references and addresses in strings to Dogecoin equivalents
Diffstat (limited to 'src/rpcserver.cpp')
| -rw-r--r-- | src/rpcserver.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 184eb7c7b..048e221d5 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -262,10 +262,10 @@ Value stop(const Array& params, bool fHelp) if (fHelp || params.size() > 1) throw runtime_error( "stop\n" - "\nStop Bitcoin server."); + "\nStop Dogecoin server."); // Shutdown will take long enough that the response should get back StartShutdown(); - return "Bitcoin server stopping"; + return "Dogecoin server stopping"; } @@ -612,16 +612,16 @@ void StartRPCThreads() unsigned char rand_pwd[32]; GetRandBytes(rand_pwd, 32); uiInterface.ThreadSafeMessageBox(strprintf( - _("To use bitcoind, or the -server option to bitcoin-qt, you must set an rpcpassword in the configuration file:\n" + _("To use dogecoind, or the -server option to dogecoin-qt, you must set an rpcpassword in the configuration file:\n" "%s\n" "It is recommended you use the following random password:\n" - "rpcuser=bitcoinrpc\n" + "rpcuser=dogecoinrpc\n" "rpcpassword=%s\n" "(you do not need to remember this password)\n" "The username and password MUST NOT be the same.\n" "If the file does not exist, create it with owner-readable-only file permissions.\n" "It is also recommended to set alertnotify so you are notified of problems;\n" - "for example: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" [email protected]\n"), + "for example: alertnotify=echo %%s | mail -s \"Dogecoin Alert\" [email protected]\n"), GetConfigFile().string(), EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32)), "", CClientUIInterface::MSG_ERROR | CClientUIInterface::SECURE); @@ -1038,7 +1038,7 @@ json_spirit::Value CRPCTable::execute(const std::string &strMethod, const json_s } std::string HelpExampleCli(string methodname, string args){ - return "> bitcoin-cli " + methodname + " " + args + "\n"; + return "> dogecoin-cli " + methodname + " " + args + "\n"; } std::string HelpExampleRpc(string methodname, string args){ |