diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-03-19 09:57:57 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-03-19 09:57:57 -0700 |
| commit | b804f1cd56f425709baf415e0b05ec99fa3bccee (patch) | |
| tree | d5042216f32c9126a8d6e60444448a41caa5ec93 /src/init.cpp | |
| parent | Merge pull request #2376 from Diapolo/pro-file (diff) | |
| parent | harmonize 2 init messages and remove one (diff) | |
| download | discoin-b804f1cd56f425709baf415e0b05ec99fa3bccee.tar.xz discoin-b804f1cd56f425709baf415e0b05ec99fa3bccee.zip | |
Merge pull request #2332 from Diapolo/init_messages
harmonize 2 init messages and remove one
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index 5b8436651..34443d81a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -608,7 +608,7 @@ bool AppInit2() // ********************************************************* Step 5: verify wallet database integrity - uiInterface.InitMessage(_("Verifying wallet integrity...")); + uiInterface.InitMessage(_("Verifying wallet...")); if (!bitdb.Open(GetDataDir())) { @@ -826,7 +826,7 @@ bool AppInit2() break; } - uiInterface.InitMessage(_("Verifying database...")); + uiInterface.InitMessage(_("Verifying blocks...")); if (!VerifyDB()) { strLoadError = _("Corrupted block database detected"); break; @@ -985,7 +985,6 @@ bool AppInit2() // ********************************************************* Step 9: import blocks // scan for better chains in the block chain database, that are not yet connected in the active best chain - uiInterface.InitMessage(_("Importing blocks from block database...")); CValidationState state; if (!ConnectBestBlock(state)) strErrors << "Failed to connect best block"; |