From be013e9699651a2a4c4f6524e248cbfc9e6479b1 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 7 Dec 2012 09:36:22 +1100 Subject: [PATCH] Set pool probed to true on successful authorisation with stratum to avoid it being pinged later with pool_getswork. --- util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util.c b/util.c index 770f1ba1..6a6ef7b5 100644 --- a/util.c +++ b/util.c @@ -1310,6 +1310,7 @@ bool auth_stratum(struct pool *pool) } ret = true; applog(LOG_INFO, "Stratum authorisation success for pool %d", pool->pool_no); + pool->probed = true; out: if (val) json_decref(val);