diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-10-19 23:53:23 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-10-20 21:09:14 +0300 |
commit | da791c7f66243080177f92ce5f38c49305da63dc (patch) | |
tree | dca91e69cb1bbee43aea34498c2ddd5ab6ad7ce0 /src/wallet/bdb.cpp | |
parent | 986003aff93c099c400c9285b4a2ed63f4b3f180 (diff) |
wallet: Use PACKAGE_NAME to mention our software
Diffstat (limited to 'src/wallet/bdb.cpp')
-rw-r--r-- | src/wallet/bdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/bdb.cpp b/src/wallet/bdb.cpp index 2290e119fd..74fc10ab25 100644 --- a/src/wallet/bdb.cpp +++ b/src/wallet/bdb.cpp @@ -132,7 +132,7 @@ bool BerkeleyEnvironment::Open(bilingual_str& err) fs::path pathIn = fs::PathFromString(strPath); TryCreateDirectories(pathIn); if (!LockDirectory(pathIn, ".walletlock")) { - LogPrintf("Cannot obtain a lock on wallet directory %s. Another instance of bitcoin may be using it.\n", strPath); + LogPrintf("Cannot obtain a lock on wallet directory %s. Another instance may be using it.\n", strPath); err = strprintf(_("Error initializing wallet database environment %s!"), fs::quoted(fs::PathToString(Directory()))); return false; } |