diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-01-19 06:29:34 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-01-19 06:29:34 -0800 |
| commit | 0c16cc73ef442b1a820dac2e202c336eb3e1d4c0 (patch) | |
| tree | c0e7a199801ffb13c6b089b32caa714a80cd2222 /src/init.cpp | |
| parent | Merge pull request #2109 from Diapolo/qt-pro-file-win32 (diff) | |
| parent | add InitMessage() to noui and use debug.log for GUI (diff) | |
| download | discoin-0c16cc73ef442b1a820dac2e202c336eb3e1d4c0.tar.xz discoin-0c16cc73ef442b1a820dac2e202c336eb3e1d4c0.zip | |
Merge pull request #2171 from Diapolo/init
add InitMessage() to noui and use debug.log for GUI
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index 4f319e8cb..1d49a7bed 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -789,7 +789,7 @@ bool AppInit2() nCoinCacheSize = nTotalCache / 300; // coins in memory require around 300 bytes uiInterface.InitMessage(_("Loading block index...")); - printf("Loading block index...\n"); + nStart = GetTimeMillis(); pblocktree = new CBlockTreeDB(nBlockTreeDBCache, false, fReindex); pcoinsdbview = new CCoinsViewDB(nCoinDBCache, false, fReindex); @@ -848,7 +848,7 @@ bool AppInit2() // ********************************************************* Step 8: load wallet uiInterface.InitMessage(_("Loading wallet...")); - printf("Loading wallet...\n"); + nStart = GetTimeMillis(); bool fFirstRun = true; pwalletMain = new CWallet("wallet.dat"); @@ -946,7 +946,7 @@ bool AppInit2() // ********************************************************* Step 10: load peers uiInterface.InitMessage(_("Loading addresses...")); - printf("Loading addresses...\n"); + nStart = GetTimeMillis(); { @@ -981,7 +981,6 @@ bool AppInit2() // ********************************************************* Step 12: finished uiInterface.InitMessage(_("Done loading")); - printf("Done loading\n"); if (!strErrors.str().empty()) return InitError(strErrors.str()); |