diff options
| author | Gregory Maxwell <[email protected]> | 2015-11-13 11:29:33 -0800 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2015-11-13 11:30:00 -0800 |
| commit | dbd2c135ddb96bdc3a4e870c2371cb1fac227135 (patch) | |
| tree | d37ef356cf90aaa62b4a107c9f9065c62728ee9e /src/init.cpp | |
| parent | Merge pull request #7007 (diff) | |
| parent | http: speed up shutdown (diff) | |
| download | discoin-dbd2c135ddb96bdc3a4e870c2371cb1fac227135.tar.xz discoin-dbd2c135ddb96bdc3a4e870c2371cb1fac227135.zip | |
Merge pull request #6990
a264c32 http: speed up shutdown (Wladimir J. van der Laan)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index a83a136fa..f2001236a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -668,7 +668,7 @@ bool AppInitServers(boost::thread_group& threadGroup) return false; if (GetBoolArg("-rest", false) && !StartREST()) return false; - if (!StartHTTPServer(threadGroup)) + if (!StartHTTPServer()) return false; return true; } |