diff options
| author | Ross Nicoll <[email protected]> | 2015-07-27 16:35:30 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2019-03-25 05:36:11 +0000 |
| commit | 148a2aca05fe98031bcf857fa186d792c507090c (patch) | |
| tree | 11c7fd275ea0a61250e747b81f0b2c372c77a3dd /src/httpserver.cpp | |
| parent | Drop use of smart fees (diff) | |
| download | discoin-148a2aca05fe98031bcf857fa186d792c507090c.tar.xz discoin-148a2aca05fe98031bcf857fa186d792c507090c.zip | |
Introduce basic Dogecoin branding
Diffstat (limited to 'src/httpserver.cpp')
| -rw-r--r-- | src/httpserver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index e1763c6ad..dba952730 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -307,7 +307,7 @@ static void http_reject_request_cb(struct evhttp_request* req, void*) /** Event dispatcher thread */ static bool ThreadHTTP(struct event_base* base, struct evhttp* http) { - RenameThread("bitcoin-http"); + RenameThread("dogecoin-http"); LogPrint("http", "Entering http event loop\n"); event_base_dispatch(base); // Event loop will be interrupted by InterruptHTTPServer() @@ -357,7 +357,7 @@ static bool HTTPBindAddresses(struct evhttp* http) /** Simple wrapper to set thread name and run work queue */ static void HTTPWorkQueueRun(WorkQueue<HTTPClosure>* queue) { - RenameThread("bitcoin-httpworker"); + RenameThread("dogecoin-httpworker"); queue->Run(); } |