Adjust branding in datadir lock error message
This commit is contained in:
parent
d30d379beb
commit
9e2872c234
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||
if (file) fclose(file);
|
||||
static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
|
||||
if (!lock.try_lock())
|
||||
return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin is probably already running."), strDataDir));
|
||||
return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running."), strDataDir));
|
||||
|
||||
if (GetBoolArg("-shrinkdebugfile", !fDebug))
|
||||
ShrinkDebugFile();
|
||||
|
|
Loading…
Reference in a new issue