Make GetDataDir return absolute paths
[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 "util.h"
11 #include "ui_interface.h"
12 #include <boost/filesystem.hpp>
13 #include <boost/filesystem/fstream.hpp>
14 #include <boost/filesystem/convenience.hpp>
15 #include <boost/interprocess/sync/file_lock.hpp>
16
17 #ifndef WIN32
18 #include <signal.h>
19 #endif
20
21 using namespace std;
22 using namespace boost;
23
24 CWallet* pwalletMain;
25
26 //////////////////////////////////////////////////////////////////////////////
27 //
28 // Shutdown
29 //
30
31 void ExitTimeout(void* parg)
32 {
33 #ifdef WIN32
34     Sleep(5000);
35     ExitProcess(0);
36 #endif
37 }
38
39 void Shutdown(void* parg)
40 {
41     static CCriticalSection cs_Shutdown;
42     static bool fTaken;
43     bool fFirstThread = false;
44     {
45         TRY_LOCK(cs_Shutdown, lockShutdown);
46         if (lockShutdown)
47         {
48             fFirstThread = !fTaken;
49             fTaken = true;
50         }
51     }
52     static bool fExit;
53     if (fFirstThread)
54     {
55         fShutdown = true;
56         nTransactionsUpdated++;
57         DBFlush(false);
58         StopNode();
59         DBFlush(true);
60         boost::filesystem::remove(GetPidFile());
61         UnregisterWallet(pwalletMain);
62         delete pwalletMain;
63         CreateThread(ExitTimeout, NULL);
64         Sleep(50);
65         printf("Bitcoin exiting\n\n");
66         fExit = true;
67         exit(0);
68     }
69     else
70     {
71         while (!fExit)
72             Sleep(500);
73         Sleep(100);
74         ExitThread(0);
75     }
76 }
77
78 void HandleSIGTERM(int)
79 {
80     fRequestShutdown = true;
81 }
82
83
84
85
86
87
88 //////////////////////////////////////////////////////////////////////////////
89 //
90 // Start
91 //
92 #if !defined(QT_GUI)
93 int main(int argc, char* argv[])
94 {
95     bool fRet = false;
96     fRet = AppInit(argc, argv);
97
98     if (fRet && fDaemon)
99         return 0;
100
101     return 1;
102 }
103 #endif
104
105 bool AppInit(int argc, char* argv[])
106 {
107     bool fRet = false;
108     try
109     {
110         fRet = AppInit2(argc, argv);
111     }
112     catch (std::exception& e) {
113         PrintException(&e, "AppInit()");
114     } catch (...) {
115         PrintException(NULL, "AppInit()");
116     }
117     if (!fRet)
118         Shutdown(NULL);
119     return fRet;
120 }
121
122 bool AppInit2(int argc, char* argv[])
123 {
124 #ifdef _MSC_VER
125     // Turn off microsoft heap dump noise
126     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
127     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
128 #endif
129 #if _MSC_VER >= 1400
130     // Disable confusing "helpful" text message on abort, ctrl-c
131     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
132 #endif
133 #ifndef WIN32
134     umask(077);
135 #endif
136 #ifndef WIN32
137     // Clean shutdown on SIGTERM
138     struct sigaction sa;
139     sa.sa_handler = HandleSIGTERM;
140     sigemptyset(&sa.sa_mask);
141     sa.sa_flags = 0;
142     sigaction(SIGTERM, &sa, NULL);
143     sigaction(SIGINT, &sa, NULL);
144     sigaction(SIGHUP, &sa, NULL);
145 #endif
146
147     //
148     // Parameters
149     //
150     // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
151 #if !defined(QT_GUI)
152     ParseParameters(argc, argv);
153     if (!boost::filesystem::is_directory(GetDataDir(false)))
154     {
155         fprintf(stderr, "Error: Specified directory does not exist\n");
156         Shutdown(NULL);
157     }
158     ReadConfigFile(mapArgs, mapMultiArgs);
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
358     // as LoadBlockIndex can take several minutes, it's possible the user
359     // requested to kill bitcoin-qt during the last operation. If so, exit.
360     // As the program has not fully started yet, Shutdown() is possibly overkill.
361     if (fRequestShutdown)
362     {
363         printf("Shutdown requested. Exiting.\n");
364         return false;
365     }
366     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
367
368     InitMessage(_("Loading wallet..."));
369     printf("Loading wallet...\n");
370     nStart = GetTimeMillis();
371     bool fFirstRun;
372     pwalletMain = new CWallet("wallet.dat");
373     int nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
374     if (nLoadWalletRet != DB_LOAD_OK)
375     {
376         if (nLoadWalletRet == DB_CORRUPT)
377             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
378         else if (nLoadWalletRet == DB_TOO_NEW)
379             strErrors << _("Error loading wallet.dat: Wallet requires newer version of Bitcoin") << "\n";
380         else if (nLoadWalletRet == DB_NEED_REWRITE)
381         {
382             strErrors << _("Wallet needed to be rewritten: restart Bitcoin to complete") << "\n";
383             printf("%s", strErrors.str().c_str());
384             ThreadSafeMessageBox(strErrors.str(), _("Bitcoin"), wxOK | wxICON_ERROR | wxMODAL);
385             return false;
386         }
387         else
388             strErrors << _("Error loading wallet.dat") << "\n";
389     }
390
391     if (GetBoolArg("-upgradewallet", fFirstRun))
392     {
393         int nMaxVersion = GetArg("-upgradewallet", 0);
394         if (nMaxVersion == 0) // the -walletupgrade without argument case
395         {
396             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
397             nMaxVersion = CLIENT_VERSION;
398             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
399         }
400         else
401             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
402         if (nMaxVersion < pwalletMain->GetVersion())
403             strErrors << _("Cannot downgrade wallet") << "\n";
404         pwalletMain->SetMaxVersion(nMaxVersion);
405     }
406
407     if (fFirstRun)
408     {
409         // Create new keyUser and set as default key
410         RandAddSeedPerfmon();
411
412         std::vector<unsigned char> newDefaultKey;
413         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
414             strErrors << _("Cannot initialize keypool") << "\n";
415         pwalletMain->SetDefaultKey(newDefaultKey);
416         if (!pwalletMain->SetAddressBookName(CBitcoinAddress(pwalletMain->vchDefaultKey), ""))
417             strErrors << _("Cannot write default address") << "\n";
418     }
419
420     printf("%s", strErrors.str().c_str());
421     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
422
423     RegisterWallet(pwalletMain);
424
425     CBlockIndex *pindexRescan = pindexBest;
426     if (GetBoolArg("-rescan"))
427         pindexRescan = pindexGenesisBlock;
428     else
429     {
430         CWalletDB walletdb("wallet.dat");
431         CBlockLocator locator;
432         if (walletdb.ReadBestBlock(locator))
433             pindexRescan = locator.GetBlockIndex();
434     }
435     if (pindexBest != pindexRescan)
436     {
437         InitMessage(_("Rescanning..."));
438         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
439         nStart = GetTimeMillis();
440         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
441         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
442     }
443
444     InitMessage(_("Done loading"));
445     printf("Done loading\n");
446
447     //// debug print
448     printf("mapBlockIndex.size() = %d\n",   mapBlockIndex.size());
449     printf("nBestHeight = %d\n",            nBestHeight);
450     printf("setKeyPool.size() = %d\n",      pwalletMain->setKeyPool.size());
451     printf("mapWallet.size() = %d\n",       pwalletMain->mapWallet.size());
452     printf("mapAddressBook.size() = %d\n",  pwalletMain->mapAddressBook.size());
453
454     if (!strErrors.str().empty())
455     {
456         ThreadSafeMessageBox(strErrors.str(), _("Bitcoin"), wxOK | wxICON_ERROR | wxMODAL);
457         return false;
458     }
459
460     // Add wallet transactions that aren't already in a block to mapTransactions
461     pwalletMain->ReacceptWalletTransactions();
462
463     // Note: Bitcoin-QT stores several settings in the wallet, so we want
464     // to load the wallet BEFORE parsing command-line arguments, so
465     // the command-line/bitcoin.conf settings override GUI setting.
466
467     //
468     // Parameters
469     //
470     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
471     {
472         PrintBlockTree();
473         return false;
474     }
475
476     if (mapArgs.count("-timeout"))
477     {
478         int nNewTimeout = GetArg("-timeout", 5000);
479         if (nNewTimeout > 0 && nNewTimeout < 600000)
480             nConnectTimeout = nNewTimeout;
481     }
482
483     if (mapArgs.count("-printblock"))
484     {
485         string strMatch = mapArgs["-printblock"];
486         int nFound = 0;
487         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
488         {
489             uint256 hash = (*mi).first;
490             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
491             {
492                 CBlockIndex* pindex = (*mi).second;
493                 CBlock block;
494                 block.ReadFromDisk(pindex);
495                 block.BuildMerkleTree();
496                 block.print();
497                 printf("\n");
498                 nFound++;
499             }
500         }
501         if (nFound == 0)
502             printf("No blocks matching %s were found\n", strMatch.c_str());
503         return false;
504     }
505
506     if (mapArgs.count("-proxy"))
507     {
508         fUseProxy = true;
509         addrProxy = CService(mapArgs["-proxy"], 9050);
510         if (!addrProxy.IsValid())
511         {
512             ThreadSafeMessageBox(_("Invalid -proxy address"), _("Bitcoin"), wxOK | wxMODAL);
513             return false;
514         }
515     }
516
517     bool fTor = (fUseProxy && addrProxy.GetPort() == 9050);
518     if (fTor)
519     {
520         // Use SoftSetBoolArg here so user can override any of these if they wish.
521         // Note: the GetBoolArg() calls for all of these must happen later.
522         SoftSetBoolArg("-listen", false);
523         SoftSetBoolArg("-irc", false);
524         SoftSetBoolArg("-dnsseed", false);
525         SoftSetBoolArg("-upnp", false);
526         SoftSetBoolArg("-dns", false);
527     }
528
529     fAllowDNS = GetBoolArg("-dns");
530     fNoListen = !GetBoolArg("-listen", true);
531
532     // Continue to put "/P2SH/" in the coinbase to monitor
533     // BIP16 support.
534     // This can be removed eventually...
535     const char* pszP2SH = "/P2SH/";
536     COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));
537
538     if (!fNoListen)
539     {
540         std::string strError;
541         if (!BindListenPort(strError))
542         {
543             ThreadSafeMessageBox(strError, _("Bitcoin"), wxOK | wxMODAL);
544             return false;
545         }
546     }
547
548     if (mapArgs.count("-addnode"))
549     {
550         BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])
551         {
552             CAddress addr(CService(strAddr, GetDefaultPort(), fAllowDNS));
553             addr.nTime = 0; // so it won't relay unless successfully connected
554             if (addr.IsValid())
555                 addrman.Add(addr, CNetAddr("127.0.0.1"));
556         }
557     }
558
559     if (mapArgs.count("-paytxfee"))
560     {
561         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
562         {
563             ThreadSafeMessageBox(_("Invalid amount for -paytxfee=<amount>"), _("Bitcoin"), wxOK | wxMODAL);
564             return false;
565         }
566         if (nTransactionFee > 0.25 * COIN)
567             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);
568     }
569
570     //
571     // Start the node
572     //
573     if (!CheckDiskSpace())
574         return false;
575
576     RandAddSeedPerfmon();
577
578     if (!CreateThread(StartNode, NULL))
579         ThreadSafeMessageBox(_("Error: CreateThread(StartNode) failed"), _("Bitcoin"), wxOK | wxMODAL);
580
581     if (fServer)
582         CreateThread(ThreadRPCServer, NULL);
583
584 #ifdef QT_GUI
585     if(GetStartOnSystemStartup())
586         SetStartOnSystemStartup(true); // Remove startup links to bitcoin-wx
587 #endif
588
589 #if !defined(QT_GUI)
590     while (1)
591         Sleep(5000);
592 #endif
593
594     return true;
595 }
596