diff options
| author | Gavin Andresen <[email protected]> | 2011-01-20 14:12:10 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-01-20 14:12:10 -0500 |
| commit | f1307515b75cae1db84d73dc543edb2e001bc4ce (patch) | |
| tree | eea41d044f82a7a9311c3360501042519e3e7172 /init.cpp | |
| parent | Reconcile getbalance and listaccounts 0 in the shared-wallet case (diff) | |
| download | discoin-f1307515b75cae1db84d73dc543edb2e001bc4ce.tar.xz discoin-f1307515b75cae1db84d73dc543edb2e001bc4ce.zip | |
print -rescan timing info in debug.log
Diffstat (limited to 'init.cpp')
| -rw-r--r-- | init.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -330,6 +330,13 @@ bool AppInit2(int argc, char* argv[]) strErrors += _("Error loading wallet.dat \n"); printf(" wallet %15"PRI64d"ms\n", GetTimeMillis() - nStart); + if (GetBoolArg("-rescan")) + { + nStart = GetTimeMillis(); + ScanForWalletTransactions(pindexGenesisBlock); + printf(" rescan %15"PRI64d"ms\n", GetTimeMillis() - nStart); + } + printf("Done loading\n"); //// debug print @@ -346,9 +353,6 @@ bool AppInit2(int argc, char* argv[]) return false; } - if (GetBoolArg("-rescan")) - ScanForWalletTransactions(pindexGenesisBlock); - // Add wallet transactions that aren't already in a block to mapTransactions ReacceptWalletTransactions(); |