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/net.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/net.cpp')
| -rw-r--r-- | src/net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index e8df36308..20141da03 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1029,7 +1029,7 @@ void ThreadMapPort() } } - string strDesc = "Bitcoin " + FormatFullVersion(); + string strDesc = "Dogecoin " + FormatFullVersion(); try { while (true) { @@ -1518,7 +1518,7 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fWhiteliste { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) - strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core is probably already running."), addrBind.ToString()); + strError = strprintf(_("Unable to bind to %s on this computer. Dogecoin Core is probably already running."), addrBind.ToString()); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToString(), NetworkErrorString(nErr)); LogPrintf("%s\n", strError); |