Replace "bitcoin" with "Zcash".

This commit is contained in:
Jason Davies
2017-07-21 09:18:09 +01:00
parent ab28fc4ec3
commit b30900a54b
3 changed files with 4 additions and 4 deletions

View File

@@ -267,7 +267,7 @@ static void http_request_cb(struct evhttp_request* req, void* arg)
/** Event dispatcher thread */
static void ThreadHTTP(struct event_base* base, struct evhttp* http)
{
RenameThread("bitcoin-http");
RenameThread("zcash-http");
LogPrint("http", "Entering http event loop\n");
event_base_dispatch(base);
// Event loop will be interrupted by InterruptHTTPServer()
@@ -316,7 +316,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("zcash-httpworker");
queue->Run();
}