From 41707760f560234b20485555560a547c28d10289 Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Thu, 24 Sep 2015 11:22:55 +0200 Subject: [PATCH] stratum: force exit on pool auth failure the miner was stuck instead of exiting after the retries... --- ccminer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ccminer.cpp b/ccminer.cpp index da55364..8aed91a 100644 --- a/ccminer.cpp +++ b/ccminer.cpp @@ -2324,6 +2324,7 @@ wait_stratum_url: applog(LOG_ERR, "...terminating workio thread"); //tq_push(thr_info[work_thr_id].q, NULL); workio_abort(); + proper_exit(EXIT_CODE_POOL_TIMEOUT); goto out; } }