Give a better error message which does not mention a specific coin name, so as to not confuse DragonX/etc users

This commit is contained in:
Duke
2024-02-21 10:54:51 -05:00
parent 76e81281e1
commit f71f8124c3
2 changed files with 3 additions and 3 deletions

View File

@@ -2166,7 +2166,7 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fAllowliste
{
int nErr = WSAGetLastError();
if (nErr == WSAEADDRINUSE)
strError = strprintf(_("Unable to bind to %s on this computer. Hush is probably already running."), addrBind.ToString());
strError = strprintf(_("Unable to bind to %s on this computer. Full node 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);