aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-03-21 13:19:25 -0400
committerLuke Dashjr <luke-jr+git@utopios.org>2012-03-21 13:19:25 -0400
commit17a5fd9248ce62ca412f7098ca261d4b4271cc99 (patch)
treecff14a248ac394be9af507ab3f1bf25446bb3e5f /src/init.cpp
parentb4c7b6a384e69ec31ae6067a9b9692fa7b02ab56 (diff)
parent0e6c6e3fd1ab971c652e48fa04bac097e44e76fe (diff)
downloadbitcoin-17a5fd9248ce62ca412f7098ca261d4b4271cc99.tar.xz
Merge branch '0.4.x' into 0.5.0.x
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp
index c8141f2c91..168ebee67d 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -370,12 +370,14 @@ bool AppInit2(int argc, char* argv[])
else if (nLoadWalletRet == DB_NEED_REWRITE)
{
strErrors += _("Wallet needed to be rewritten: restart Bitcoin to complete \n");
+ printf("%s", strErrors.c_str());
wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR);
return false;
}
else
strErrors += _("Error loading wallet.dat \n");
}
+ printf("%s", strErrors.c_str());
printf(" wallet %15"PRI64d"ms\n", GetTimeMillis() - nStart);
RegisterWallet(pwalletMain);