Move CWalletDB code to new walletdb module.
[novacoin.git] / src / init.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 #include "db.h"
6 #include "walletdb.h"
7 #include "bitcoinrpc.h"
8 #include "net.h"
9 #include "init.h"
10 #include "strlcpy.h"
11 #include "util.h"
12 #include "ui_interface.h"
13 #include <boost/filesystem.hpp>
14 #include <boost/filesystem/fstream.hpp>
15 #include <boost/filesystem/convenience.hpp>
16 #include <boost/interprocess/sync/file_lock.hpp>
17
18 #ifndef WIN32
19 #include <signal.h>
20 #endif
21
22 using namespace std;
23 using namespace boost;
24
25 CWallet* pwalletMain;
26
27 //////////////////////////////////////////////////////////////////////////////
28 //
29 // Shutdown
30 //
31
32 void ExitTimeout(void* parg)
33 {
34 #ifdef WIN32
35     Sleep(5000);
36     ExitProcess(0);
37 #endif
38 }
39
40 void Shutdown(void* parg)
41 {
42     static CCriticalSection cs_Shutdown;
43     static bool fTaken;
44     bool fFirstThread = false;
45     {
46         TRY_LOCK(cs_Shutdown, lockShutdown);
47         if (lockShutdown)
48         {
49             fFirstThread = !fTaken;
50             fTaken = true;
51         }
52     }
53     static bool fExit;
54     if (fFirstThread)
55     {
56         fShutdown = true;
57         nTransactionsUpdated++;
58         DBFlush(false);
59         StopNode();
60         DBFlush(true);
61         boost::filesystem::remove(GetPidFile());
62         UnregisterWallet(pwalletMain);
63         delete pwalletMain;
64         CreateThread(ExitTimeout, NULL);
65         Sleep(50);
66         printf("Bitcoin exiting\n\n");
67         fExit = true;
68         exit(0);
69     }
70     else
71     {
72         while (!fExit)
73             Sleep(500);
74         Sleep(100);
75         ExitThread(0);
76     }
77 }
78
79 void HandleSIGTERM(int)
80 {
81     fRequestShutdown = true;
82 }
83
84
85
86
87
88
89 //////////////////////////////////////////////////////////////////////////////
90 //
91 // Start
92 //
93 #if !defined(QT_GUI)
94 int main(int argc, char* argv[])
95 {
96     bool fRet = false;
97     fRet = AppInit(argc, argv);
98
99     if (fRet && fDaemon)
100         return 0;
101
102     return 1;
103 }
104 #endif
105
106 bool AppInit(int argc, char* argv[])
107 {
108     bool fRet = false;
109     try
110     {
111         fRet = AppInit2(argc, argv);
112     }
113     catch (std::exception& e) {
114         PrintException(&e, "AppInit()");
115     } catch (...) {
116         PrintException(NULL, "AppInit()");
117     }
118     if (!fRet)
119         Shutdown(NULL);
120     return fRet;
121 }
122
123 bool AppInit2(int argc, char* argv[])
124 {
125 #ifdef _MSC_VER
126     // Turn off microsoft heap dump noise
127     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
128     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
129 #endif
130 #if _MSC_VER >= 1400
131     // Disable confusing "helpful" text message on abort, ctrl-c
132     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
133 #endif
134 #ifndef WIN32
135     umask(077);
136 #endif
137 #ifndef WIN32
138     // Clean shutdown on SIGTERM
139     struct sigaction sa;
140     sa.sa_handler = HandleSIGTERM;
141     sigemptyset(&sa.sa_mask);
142     sa.sa_flags = 0;
143     sigaction(SIGTERM, &sa, NULL);
144     sigaction(SIGINT, &sa, NULL);
145     sigaction(SIGHUP, &sa, NULL);
146 #endif
147
148     //
149     // Parameters
150     //
151     // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
152 #if !defined(QT_GUI)
153     ParseParameters(argc, argv);
154     if (!ReadConfigFile(mapArgs, mapMultiArgs))
155     {
156         fprintf(stderr, "Error: Specified directory does not exist\n");
157         Shutdown(NULL);
158     }
159 #endif
160
161     if (mapArgs.count("-?") || mapArgs.count("--help"))
162     {
163         string strUsage = string() +
164           _("Bitcoin version") + " " + FormatFullVersion() + "\n\n" +
165           _("Usage:") + "\t\t\t\t\t\t\t\t\t\t\n" +
166             "  bitcoind [options]                   \t  " + "\n" +
167             "  bitcoind [options] <command> [params]\t  " + _("Send command to -server or bitcoind") + "\n" +
168             "  bitcoind [options] help              \t\t  " + _("List commands") + "\n" +
169             "  bitcoind [options] help <command>    \t\t  " + _("Get help for a command") + "\n" +
170           _("Options:") + "\n" +
171             "  -conf=<file>     \t\t  " + _("Specify configuration file (default: bitcoin.conf)") + "\n" +
172             "  -pid=<file>      \t\t  " + _("Specify pid file (default: bitcoind.pid)") + "\n" +
173             "  -gen             \t\t  " + _("Generate coins") + "\n" +
174             "  -gen=0           \t\t  " + _("Don't generate coins") + "\n" +
175             "  -min             \t\t  " + _("Start minimized") + "\n" +
176             "  -splash          \t\t  " + _("Show splash screen on startup (default: 1)") + "\n" +
177             "  -datadir=<dir>   \t\t  " + _("Specify data directory") + "\n" +
178             "  -dbcache=<n>     \t\t  " + _("Set database cache size in megabytes (default: 25)") + "\n" +
179             "  -dblogsize=<n>   \t\t  " + _("Set database disk log size in megabytes (default: 100)") + "\n" +
180             "  -timeout=<n>     \t  "   + _("Specify connection timeout (in milliseconds)") + "\n" +
181             "  -proxy=<ip:port> \t  "   + _("Connect through socks4 proxy") + "\n" +
182             "  -dns             \t  "   + _("Allow DNS lookups for addnode and connect") + "\n" +
183             "  -port=<port>     \t\t  " + _("Listen for connections on <port> (default: 8333 or testnet: 18333)") + "\n" +
184             "  -maxconnections=<n>\t  " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
185             "  -addnode=<ip>    \t  "   + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
186             "  -connect=<ip>    \t\t  " + _("Connect only to the specified node") + "\n" +
187             "  -irc             \t  "   + _("Find peers using internet relay chat (default: 0)") + "\n" +
188             "  -listen          \t  "   + _("Accept connections from outside (default: 1)") + "\n" +
189 #ifdef QT_GUI
190             "  -lang=<lang>     \t\t  " + _("Set language, for example \"de_DE\" (default: system locale)") + "\n" +
191 #endif
192             "  -dnsseed         \t  "   + _("Find peers using DNS lookup (default: 1)") + "\n" +
193             "  -banscore=<n>    \t  "   + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" +
194             "  -bantime=<n>     \t  "   + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" +
195             "  -maxreceivebuffer=<n>\t  " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000)") + "\n" +
196             "  -maxsendbuffer=<n>\t  "   + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 10000)") + "\n" +
197 #ifdef USE_UPNP
198 #if USE_UPNP
199             "  -upnp            \t  "   + _("Use Universal Plug and Play to map the listening port (default: 1)") + "\n" +
200 #else
201             "  -upnp            \t  "   + _("Use Universal Plug and Play to map the listening port (default: 0)") + "\n" +
202 #endif
203 #endif
204             "  -paytxfee=<amt>  \t  "   + _("Fee per KB to add to transactions you send") + "\n" +
205 #ifdef QT_GUI
206             "  -server          \t\t  " + _("Accept command line and JSON-RPC commands") + "\n" +
207 #endif
208 #if !defined(WIN32) && !defined(QT_GUI)
209             "  -daemon          \t\t  " + _("Run in the background as a daemon and accept commands") + "\n" +
210 #endif
211             "  -testnet         \t\t  " + _("Use the test network") + "\n" +
212             "  -debug           \t\t  " + _("Output extra debugging information") + "\n" +
213             "  -logtimestamps   \t  "   + _("Prepend debug output with timestamp") + "\n" +
214             "  -printtoconsole  \t  "   + _("Send trace/debug info to console instead of debug.log file") + "\n" +
215 #ifdef WIN32
216             "  -printtodebugger \t  "   + _("Send trace/debug info to debugger") + "\n" +
217 #endif
218             "  -rpcuser=<user>  \t  "   + _("Username for JSON-RPC connections") + "\n" +
219             "  -rpcpassword=<pw>\t  "   + _("Password for JSON-RPC connections") + "\n" +
220             "  -rpcport=<port>  \t\t  " + _("Listen for JSON-RPC connections on <port> (default: 8332)") + "\n" +
221             "  -rpcallowip=<ip> \t\t  " + _("Allow JSON-RPC connections from specified IP address") + "\n" +
222             "  -rpcconnect=<ip> \t  "   + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
223             "  -blocknotify=<cmd> "     + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
224             "  -upgradewallet   \t  "   + _("Upgrade wallet to latest format") + "\n" +
225             "  -keypool=<n>     \t  "   + _("Set key pool size to <n> (default: 100)") + "\n" +
226             "  -rescan          \t  "   + _("Rescan the block chain for missing wallet transactions") + "\n" +
227             "  -checkblocks=<n> \t\t  " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
228             "  -checklevel=<n>  \t\t  " + _("How thorough the block verification is (0-6, default: 1)") + "\n";
229
230         strUsage += string() +
231             _("\nSSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" +
232             "  -rpcssl                                \t  " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" +
233             "  -rpcsslcertificatechainfile=<file.cert>\t  " + _("Server certificate file (default: server.cert)") + "\n" +
234             "  -rpcsslprivatekeyfile=<file.pem>       \t  " + _("Server private key (default: server.pem)") + "\n" +
235             "  -rpcsslciphers=<ciphers>               \t  " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n";
236
237         strUsage += string() +
238             "  -?               \t\t  " + _("This help message") + "\n";
239
240         // Remove tabs
241         strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end());
242 #if defined(QT_GUI) && defined(WIN32)
243         // On windows, show a message box, as there is no stderr
244         ThreadSafeMessageBox(strUsage, _("Usage"), wxOK | wxMODAL);
245 #else
246         fprintf(stderr, "%s", strUsage.c_str());
247 #endif
248         return false;
249     }
250
251     fTestNet = GetBoolArg("-testnet");
252     if (fTestNet)
253     {
254         SoftSetBoolArg("-irc", true);
255     }
256
257     fDebug = GetBoolArg("-debug");
258
259 #if !defined(WIN32) && !defined(QT_GUI)
260     fDaemon = GetBoolArg("-daemon");
261 #else
262     fDaemon = false;
263 #endif
264
265     if (fDaemon)
266         fServer = true;
267     else
268         fServer = GetBoolArg("-server");
269
270     /* force fServer when running without GUI */
271 #if !defined(QT_GUI)
272     fServer = true;
273 #endif
274     fPrintToConsole = GetBoolArg("-printtoconsole");
275     fPrintToDebugger = GetBoolArg("-printtodebugger");
276     fLogTimestamps = GetBoolArg("-logtimestamps");
277
278 #ifndef QT_GUI
279     for (int i = 1; i < argc; i++)
280         if (!IsSwitchChar(argv[i][0]) && !(strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0))
281             fCommandLine = true;
282
283     if (fCommandLine)
284     {
285         int ret = CommandLineRPC(argc, argv);
286         exit(ret);
287     }
288 #endif
289
290 #if !defined(WIN32) && !defined(QT_GUI)
291     if (fDaemon)
292     {
293         // Daemonize
294         pid_t pid = fork();
295         if (pid < 0)
296         {
297             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
298             return false;
299         }
300         if (pid > 0)
301         {
302             CreatePidFile(GetPidFile(), pid);
303             return true;
304         }
305
306         pid_t sid = setsid();
307         if (sid < 0)
308             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
309     }
310 #endif
311
312     if (!fDebug)
313         ShrinkDebugFile();
314     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
315     printf("Bitcoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
316     printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
317
318     if (GetBoolArg("-loadblockindextest"))
319     {
320         CTxDB txdb("r");
321         txdb.LoadBlockIndex();
322         PrintBlockTree();
323         return false;
324     }
325
326     // Make sure only a single bitcoin process is using the data directory.
327     boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
328     FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
329     if (file) fclose(file);
330     static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
331     if (!lock.try_lock())
332     {
333         ThreadSafeMessageBox(strprintf(_("Cannot obtain a lock on data directory %s.  Bitcoin is probably already running."), GetDataDir().string().c_str()), _("Bitcoin"), wxOK|wxMODAL);
334         return false;
335     }
336
337     std::ostringstream strErrors;
338     //
339     // Load data files
340     //
341     if (fDaemon)
342         fprintf(stdout, "bitcoin server starting\n");
343     int64 nStart;
344
345     InitMessage(_("Loading addresses..."));
346     printf("Loading addresses...\n");
347     nStart = GetTimeMillis();
348     if (!LoadAddresses())
349         strErrors << _("Error loading addr.dat") << "\n";
350     printf(" addresses   %15"PRI64d"ms\n", GetTimeMillis() - nStart);
351
352     InitMessage(_("Loading block index..."));
353     printf("Loading block index...\n");
354     nStart = GetTimeMillis();
355     if (!LoadBlockIndex())
356         strErrors << _("Error loading blkindex.dat") << "\n";
357     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
358
359     InitMessage(_("Loading wallet..."));
360     printf("Loading wallet...\n");
361     nStart = GetTimeMillis();
362     bool fFirstRun;
363     pwalletMain = new CWallet("wallet.dat");
364     int nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
365     if (nLoadWalletRet != DB_LOAD_OK)
366     {
367         if (nLoadWalletRet == DB_CORRUPT)
368             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
369         else if (nLoadWalletRet == DB_TOO_NEW)
370             strErrors << _("Error loading wallet.dat: Wallet requires newer version of Bitcoin") << "\n";
371         else if (nLoadWalletRet == DB_NEED_REWRITE)
372         {
373             strErrors << _("Wallet needed to be rewritten: restart Bitcoin to complete") << "\n";
374             printf("%s", strErrors.str().c_str());
375             ThreadSafeMessageBox(strErrors.str(), _("Bitcoin"), wxOK | wxICON_ERROR | wxMODAL);
376             return false;
377         }
378         else
379             strErrors << _("Error loading wallet.dat") << "\n";
380     }
381
382     if (GetBoolArg("-upgradewallet", fFirstRun))
383     {
384         int nMaxVersion = GetArg("-upgradewallet", 0);
385         if (nMaxVersion == 0) // the -walletupgrade without argument case
386         {
387             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
388             nMaxVersion = CLIENT_VERSION;
389             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
390         }
391         else
392             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
393         if (nMaxVersion < pwalletMain->GetVersion())
394             strErrors << _("Cannot downgrade wallet") << "\n";
395         pwalletMain->SetMaxVersion(nMaxVersion);
396     }
397
398     if (fFirstRun)
399     {
400         // Create new keyUser and set as default key
401         RandAddSeedPerfmon();
402
403         std::vector<unsigned char> newDefaultKey;
404         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
405             strErrors << _("Cannot initialize keypool") << "\n";
406         pwalletMain->SetDefaultKey(newDefaultKey);
407         if (!pwalletMain->SetAddressBookName(CBitcoinAddress(pwalletMain->vchDefaultKey), ""))
408             strErrors << _("Cannot write default address") << "\n";
409     }
410
411     printf("%s", strErrors.str().c_str());
412     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
413
414     RegisterWallet(pwalletMain);
415
416     CBlockIndex *pindexRescan = pindexBest;
417     if (GetBoolArg("-rescan"))
418         pindexRescan = pindexGenesisBlock;
419     else
420     {
421         CWalletDB walletdb("wallet.dat");
422         CBlockLocator locator;
423         if (walletdb.ReadBestBlock(locator))
424             pindexRescan = locator.GetBlockIndex();
425     }
426     if (pindexBest != pindexRescan)
427     {
428         InitMessage(_("Rescanning..."));
429         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
430         nStart = GetTimeMillis();
431         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
432         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
433     }
434
435     InitMessage(_("Done loading"));
436     printf("Done loading\n");
437
438     //// debug print
439     printf("mapBlockIndex.size() = %d\n",   mapBlockIndex.size());
440     printf("nBestHeight = %d\n",            nBestHeight);
441     printf("setKeyPool.size() = %d\n",      pwalletMain->setKeyPool.size());
442     printf("mapWallet.size() = %d\n",       pwalletMain->mapWallet.size());
443     printf("mapAddressBook.size() = %d\n",  pwalletMain->mapAddressBook.size());
444
445     if (!strErrors.str().empty())
446     {
447         ThreadSafeMessageBox(strErrors.str(), _("Bitcoin"), wxOK | wxICON_ERROR | wxMODAL);
448         return false;
449     }
450
451     // Add wallet transactions that aren't already in a block to mapTransactions
452     pwalletMain->ReacceptWalletTransactions();
453
454     // Note: Bitcoin-QT stores several settings in the wallet, so we want
455     // to load the wallet BEFORE parsing command-line arguments, so
456     // the command-line/bitcoin.conf settings override GUI setting.
457
458     //
459     // Parameters
460     //
461     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
462     {
463         PrintBlockTree();
464         return false;
465     }
466
467     if (mapArgs.count("-timeout"))
468     {
469         int nNewTimeout = GetArg("-timeout", 5000);
470         if (nNewTimeout > 0 && nNewTimeout < 600000)
471             nConnectTimeout = nNewTimeout;
472     }
473
474     if (mapArgs.count("-printblock"))
475     {
476         string strMatch = mapArgs["-printblock"];
477         int nFound = 0;
478         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
479         {
480             uint256 hash = (*mi).first;
481             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
482             {
483                 CBlockIndex* pindex = (*mi).second;
484                 CBlock block;
485                 block.ReadFromDisk(pindex);
486                 block.BuildMerkleTree();
487                 block.print();
488                 printf("\n");
489                 nFound++;
490             }
491         }
492         if (nFound == 0)
493             printf("No blocks matching %s were found\n", strMatch.c_str());
494         return false;
495     }
496
497     if (mapArgs.count("-proxy"))
498     {
499         fUseProxy = true;
500         addrProxy = CService(mapArgs["-proxy"], 9050);
501         if (!addrProxy.IsValid())
502         {
503             ThreadSafeMessageBox(_("Invalid -proxy address"), _("Bitcoin"), wxOK | wxMODAL);
504             return false;
505         }
506     }
507
508     bool fTor = (fUseProxy && addrProxy.GetPort() == 9050);
509     if (fTor)
510     {
511         // Use SoftSetBoolArg here so user can override any of these if they wish.
512         // Note: the GetBoolArg() calls for all of these must happen later.
513         SoftSetBoolArg("-listen", false);
514         SoftSetBoolArg("-irc", false);
515         SoftSetBoolArg("-dnsseed", false);
516         SoftSetBoolArg("-upnp", false);
517         SoftSetBoolArg("-dns", false);
518     }
519
520     fAllowDNS = GetBoolArg("-dns");
521     fNoListen = !GetBoolArg("-listen", true);
522
523     // Continue to put "/P2SH/" in the coinbase to monitor
524     // BIP16 support.
525     // This can be removed eventually...
526     const char* pszP2SH = "/P2SH/";
527     COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));
528
529     if (!fNoListen)
530     {
531         std::string strError;
532         if (!BindListenPort(strError))
533         {
534             ThreadSafeMessageBox(strError, _("Bitcoin"), wxOK | wxMODAL);
535             return false;
536         }
537     }
538
539     if (mapArgs.count("-addnode"))
540     {
541         BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])
542         {
543             CAddress addr(CService(strAddr, GetDefaultPort(), fAllowDNS));
544             addr.nTime = 0; // so it won't relay unless successfully connected
545             if (addr.IsValid())
546                 addrman.Add(addr, CNetAddr("127.0.0.1"));
547         }
548     }
549
550     if (mapArgs.count("-paytxfee"))
551     {
552         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
553         {
554             ThreadSafeMessageBox(_("Invalid amount for -paytxfee=<amount>"), _("Bitcoin"), wxOK | wxMODAL);
555             return false;
556         }
557         if (nTransactionFee > 0.25 * COIN)
558             ThreadSafeMessageBox(_("Warning: -paytxfee is set very high.  This is the transaction fee you will pay if you send a transaction."), _("Bitcoin"), wxOK | wxICON_EXCLAMATION | wxMODAL);
559     }
560
561     //
562     // Start the node
563     //
564     if (!CheckDiskSpace())
565         return false;
566
567     RandAddSeedPerfmon();
568
569     if (!CreateThread(StartNode, NULL))
570         ThreadSafeMessageBox(_("Error: CreateThread(StartNode) failed"), _("Bitcoin"), wxOK | wxMODAL);
571
572     if (fServer)
573         CreateThread(ThreadRPCServer, NULL);
574
575 #ifdef QT_GUI
576     if(GetStartOnSystemStartup())
577         SetStartOnSystemStartup(true); // Remove startup links to bitcoin-wx
578 #endif
579
580 #if !defined(QT_GUI)
581     while (1)
582         Sleep(5000);
583 #endif
584
585     return true;
586 }
587