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/net.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/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 19f4a73bc..e62de1044 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1122,7 +1122,7 @@ void ThreadMapPort() } } - string strDesc = "Bitcoin " + FormatFullVersion(); + string strDesc = "Dogecoin " + FormatFullVersion(); try { while (true) { @@ -1653,7 +1653,7 @@ bool BindListenPort(const CService &addrBind, string& strError) { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) - strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core Daemon is probably already running."), addrBind.ToString()); + strError = strprintf(_("Unable to bind to %s on this computer. Dogecoin Core Daemon is probably already running."), addrBind.ToString()); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString(), nErr, strerror(nErr)); LogPrintf("%s\n", strError); |