diff options
| author | Gavin Andresen <[email protected]> | 2013-03-19 14:20:22 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-03-19 14:20:22 -0700 |
| commit | 8ab14e69769d89bcdc8154274f299b0f552f022e (patch) | |
| tree | 81c78d2d65b31074982396d56a974d5bec32c5e5 /src/init.cpp | |
| parent | Merge pull request #2378 from Diapolo/translations (diff) | |
| parent | Deleting everything except the wallet will not help recover from BDB errors. (diff) | |
| download | discoin-8ab14e69769d89bcdc8154274f299b0f552f022e.tar.xz discoin-8ab14e69769d89bcdc8154274f299b0f552f022e.zip | |
Merge pull request #2384 from gmaxwell/trim_error0
Deleting everything except the wallet will not help recover from BDB errors.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index 34443d81a..63610b17f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -612,9 +612,7 @@ bool AppInit2() if (!bitdb.Open(GetDataDir())) { - string msg = strprintf(_("Error initializing database environment %s!" - " To recover, BACKUP THAT DIRECTORY, then remove" - " everything from it except for wallet.dat."), strDataDir.c_str()); + string msg = strprintf(_("Error initializing wallet database environment %s!"), strDataDir.c_str()); return InitError(msg); } |