@@ -861,7 +861,7 @@ bool AppInit2()
861861 printf (" Shutdown requested. Exiting.\n " );
862862 return false ;
863863 }
864- printf (" block index %15" PRI64d" ms\n " , GetTimeMillis () - nStart);
864+ printf (" block index %15" PRI64d " ms\n " , GetTimeMillis () - nStart);
865865
866866 if (GetBoolArg (" -printblockindex" ) || GetBoolArg (" -printblocktree" ))
867867 {
@@ -952,7 +952,7 @@ bool AppInit2()
952952 }
953953
954954 printf (" %s" , strErrors.str ().c_str ());
955- printf (" wallet %15" PRI64d" ms\n " , GetTimeMillis () - nStart);
955+ printf (" wallet %15" PRI64d " ms\n " , GetTimeMillis () - nStart);
956956
957957 RegisterWallet (pwalletMain);
958958
@@ -972,7 +972,7 @@ bool AppInit2()
972972 printf (" Rescanning last %i blocks (from block %i)...\n " , pindexBest->nHeight - pindexRescan->nHeight , pindexRescan->nHeight );
973973 nStart = GetTimeMillis ();
974974 pwalletMain->ScanForWalletTransactions (pindexRescan, true );
975- printf (" rescan %15" PRI64d" ms\n " , GetTimeMillis () - nStart);
975+ printf (" rescan %15" PRI64d " ms\n " , GetTimeMillis () - nStart);
976976 }
977977
978978 // ********************************************************* Step 9: import blocks
@@ -1013,7 +1013,7 @@ bool AppInit2()
10131013 printf (" Invalid or missing peers.dat; recreating\n " );
10141014 }
10151015
1016- printf (" Loaded %i addresses from peers.dat %" PRI64d" ms\n " ,
1016+ printf (" Loaded %i addresses from peers.dat %" PRI64d " ms\n " ,
10171017 addrman.size (), GetTimeMillis () - nStart);
10181018
10191019 // ********************************************************* Step 11: start node
@@ -1024,11 +1024,11 @@ bool AppInit2()
10241024 RandAddSeedPerfmon ();
10251025
10261026 // // debug print
1027- printf (" mapBlockIndex.size() = %" PRIszu" \n " , mapBlockIndex.size ());
1027+ printf (" mapBlockIndex.size() = %" PRIszu " \n " , mapBlockIndex.size ());
10281028 printf (" nBestHeight = %d\n " , nBestHeight);
1029- printf (" setKeyPool.size() = %" PRIszu" \n " , pwalletMain->setKeyPool .size ());
1030- printf (" mapWallet.size() = %" PRIszu" \n " , pwalletMain->mapWallet .size ());
1031- printf (" mapAddressBook.size() = %" PRIszu" \n " , pwalletMain->mapAddressBook .size ());
1029+ printf (" setKeyPool.size() = %" PRIszu " \n " , pwalletMain->setKeyPool .size ());
1030+ printf (" mapWallet.size() = %" PRIszu " \n " , pwalletMain->mapWallet .size ());
1031+ printf (" mapAddressBook.size() = %" PRIszu " \n " , pwalletMain->mapAddressBook .size ());
10321032
10331033 if (!NewThread (StartNode, NULL ))
10341034 InitError (_ (" Error: could not start node" ));
0 commit comments