Merge pull request #3196 from laanwj/2013_11_nohavegui
No more fHaveGUI
This commit is contained in:
commit
25d056a58f
5 changed files with 5 additions and 12 deletions
|
@ -108,7 +108,7 @@ bool AppInit(int argc, char* argv[])
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
detectShutdownThread = new boost::thread(boost::bind(&DetectShutdownThread, &threadGroup));
|
detectShutdownThread = new boost::thread(boost::bind(&DetectShutdownThread, &threadGroup));
|
||||||
fRet = AppInit2(threadGroup);
|
fRet = AppInit2(threadGroup, true);
|
||||||
}
|
}
|
||||||
catch (std::exception& e) {
|
catch (std::exception& e) {
|
||||||
PrintExceptionContinue(&e, "AppInit()");
|
PrintExceptionContinue(&e, "AppInit()");
|
||||||
|
@ -142,7 +142,6 @@ extern void noui_connect();
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
bool fRet = false;
|
bool fRet = false;
|
||||||
fHaveGUI = false;
|
|
||||||
|
|
||||||
// Connect bitcoind signal handlers
|
// Connect bitcoind signal handlers
|
||||||
noui_connect();
|
noui_connect();
|
||||||
|
|
|
@ -363,7 +363,7 @@ void ThreadImport(std::vector<boost::filesystem::path> vImportFiles)
|
||||||
/** Initialize bitcoin.
|
/** Initialize bitcoin.
|
||||||
* @pre Parameters should be parsed and config file should be read.
|
* @pre Parameters should be parsed and config file should be read.
|
||||||
*/
|
*/
|
||||||
bool AppInit2(boost::thread_group& threadGroup)
|
bool AppInit2(boost::thread_group& threadGroup, bool fForceServer)
|
||||||
{
|
{
|
||||||
// ********************************************************* Step 1: setup
|
// ********************************************************* Step 1: setup
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
@ -490,14 +490,11 @@ bool AppInit2(boost::thread_group& threadGroup)
|
||||||
else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
|
else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
|
||||||
nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
|
nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
|
||||||
|
|
||||||
if (fDaemon)
|
if (fDaemon || fForceServer)
|
||||||
fServer = true;
|
fServer = true;
|
||||||
else
|
else
|
||||||
fServer = GetBoolArg("-server", false);
|
fServer = GetBoolArg("-server", false);
|
||||||
|
|
||||||
/* force fServer when running without GUI */
|
|
||||||
if (!fHaveGUI)
|
|
||||||
fServer = true;
|
|
||||||
fPrintToConsole = GetBoolArg("-printtoconsole", false);
|
fPrintToConsole = GetBoolArg("-printtoconsole", false);
|
||||||
fPrintToDebugger = GetBoolArg("-printtodebugger", false);
|
fPrintToDebugger = GetBoolArg("-printtodebugger", false);
|
||||||
fLogTimestamps = GetBoolArg("-logtimestamps", true);
|
fLogTimestamps = GetBoolArg("-logtimestamps", true);
|
||||||
|
|
|
@ -16,7 +16,7 @@ extern CWallet* pwalletMain;
|
||||||
void StartShutdown();
|
void StartShutdown();
|
||||||
bool ShutdownRequested();
|
bool ShutdownRequested();
|
||||||
void Shutdown();
|
void Shutdown();
|
||||||
bool AppInit2(boost::thread_group& threadGroup);
|
bool AppInit2(boost::thread_group& threadGroup, bool fForceServer);
|
||||||
|
|
||||||
/* The help message mode determines what help message to show */
|
/* The help message mode determines what help message to show */
|
||||||
enum HelpMessageMode
|
enum HelpMessageMode
|
||||||
|
|
|
@ -41,7 +41,6 @@ bool fReindex = false;
|
||||||
bool fBenchmark = false;
|
bool fBenchmark = false;
|
||||||
bool fTxIndex = false;
|
bool fTxIndex = false;
|
||||||
unsigned int nCoinCacheSize = 5000;
|
unsigned int nCoinCacheSize = 5000;
|
||||||
bool fHaveGUI = false;
|
|
||||||
|
|
||||||
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
|
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
|
||||||
int64 CTransaction::nMinTxFee = 10000; // Override with -mintxfee
|
int64 CTransaction::nMinTxFee = 10000; // Override with -mintxfee
|
||||||
|
|
|
@ -173,8 +173,6 @@ int main(int argc, char *argv[])
|
||||||
bool fMissingDatadir = false;
|
bool fMissingDatadir = false;
|
||||||
bool fSelParFromCLFailed = false;
|
bool fSelParFromCLFailed = false;
|
||||||
|
|
||||||
fHaveGUI = true;
|
|
||||||
|
|
||||||
// Command-line options take precedence:
|
// Command-line options take precedence:
|
||||||
ParseParameters(argc, argv);
|
ParseParameters(argc, argv);
|
||||||
// ... then bitcoin.conf:
|
// ... then bitcoin.conf:
|
||||||
|
@ -293,7 +291,7 @@ int main(int argc, char *argv[])
|
||||||
QObject::connect(pollShutdownTimer, SIGNAL(timeout()), guiref, SLOT(detectShutdown()));
|
QObject::connect(pollShutdownTimer, SIGNAL(timeout()), guiref, SLOT(detectShutdown()));
|
||||||
pollShutdownTimer->start(200);
|
pollShutdownTimer->start(200);
|
||||||
|
|
||||||
if(AppInit2(threadGroup))
|
if(AppInit2(threadGroup, false))
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
// Put this in a block, so that the Model objects are cleaned up before
|
// Put this in a block, so that the Model objects are cleaned up before
|
||||||
|
|
Loading…
Reference in a new issue