diff options
| author | Michagogo <[email protected]> | 2014-03-12 22:14:11 +0200 |
|---|---|---|
| committer | Michagogo <[email protected]> | 2014-03-12 22:14:11 +0200 |
| commit | 9e2872c234d9b4fc7ae2b69326fe9610f7b18264 (patch) | |
| tree | 80207d8d72baeb0f6b534babeba69579a2777565 /src/init.cpp | |
| parent | Slightly tweak error when unable to bind port (diff) | |
| download | discoin-9e2872c234d9b4fc7ae2b69326fe9610f7b18264.tar.xz discoin-9e2872c234d9b4fc7ae2b69326fe9610f7b18264.zip | |
Adjust branding in datadir lock error message
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 4cc18800a..6e1a320c1 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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(); |