diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-01-08 14:35:02 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-01-08 14:42:07 +0100 |
| commit | 549e69a558a045829d2910c5d172e91f49101a31 (patch) | |
| tree | 307aa78abcf9d1f5c76e061c597029722aa283fd /src/qt/bitcoin.cpp | |
| parent | build: Correctly put boost at end of LDADD (diff) | |
| parent | Allow `-noserver` with bitcoind (diff) | |
| download | discoin-549e69a558a045829d2910c5d172e91f49101a31.tar.xz discoin-549e69a558a045829d2910c5d172e91f49101a31.zip | |
Merge pull request #3449
8b9adca Allow `-noserver` with bitcoind (Wladimir J. van der Laan)
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 657b42d16..9565d3ef7 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -289,7 +289,7 @@ int main(int argc, char *argv[]) QObject::connect(pollShutdownTimer, SIGNAL(timeout()), guiref, SLOT(detectShutdown())); pollShutdownTimer->start(200); - if(AppInit2(threadGroup, false)) + if(AppInit2(threadGroup)) { { // Put this in a block, so that the Model objects are cleaned up before |