diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-11-04 14:36:49 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-11-04 14:36:49 +0100 |
| commit | e30bd78f8133fe55ff0bf9e0d6a47a58357d9056 (patch) | |
| tree | 5ce93d6b2752fecb2267b967b8b34278ca17134b /src/bitcoind.cpp | |
| parent | Merge pull request #3180 from pstratem/processgetdata (diff) | |
| download | discoin-e30bd78f8133fe55ff0bf9e0d6a47a58357d9056.tar.xz discoin-e30bd78f8133fe55ff0bf9e0d6a47a58357d9056.zip | |
No more fHaveGUI
No more specific handling of GUI in bitcoin core.
Replace the last usage of fHaveGUI with a fForceServer
parameter on AppInit2.
Diffstat (limited to 'src/bitcoind.cpp')
| -rw-r--r-- | src/bitcoind.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 4fd329606..e0cf1a706 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -108,7 +108,7 @@ bool AppInit(int argc, char* argv[]) #endif detectShutdownThread = new boost::thread(boost::bind(&DetectShutdownThread, &threadGroup)); - fRet = AppInit2(threadGroup); + fRet = AppInit2(threadGroup, true); } catch (std::exception& e) { PrintExceptionContinue(&e, "AppInit()"); @@ -142,7 +142,6 @@ extern void noui_connect(); int main(int argc, char* argv[]) { bool fRet = false; - fHaveGUI = false; // Connect bitcoind signal handlers noui_connect(); |