aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-02-23 23:48:02 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-03-13 09:17:59 +0100
commite1ca89df1fd986a580565f9fe724b86209e76f32 (patch)
tree3d10976aec150b41cf7037b21d7448a0a811def0 /src
parent1a9ee5da327d8079a297ad292a1c16745b75df91 (diff)
downloadbitcoin-e1ca89df1fd986a580565f9fe724b86209e76f32.tar.xz
harmonize 2 init messages and remove one
- harmonize the database related init messages - as we have a thread for importing blocks, that init message is obsolete
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 5b8436651a..34443d81ac 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";