From 4db64cd883c0755a62d9093883cd845f06f1f250 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 16 Feb 2015 01:16:37 +1100 Subject: [PATCH] Allow but warn about ultra small nonce2 size upstream pools --- src/generator.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/generator.c b/src/generator.c index 46adf243..cda1a686 100644 --- a/src/generator.c +++ b/src/generator.c @@ -652,9 +652,8 @@ retry: goto out; } if (size < 3) { - LOGWARNING("Proxy %d:%s Nonce2 length %d too small to be able to proxy", - proxi->id, proxi->si->url, size); - goto out; + LOGWARNING("Proxy %d:%d %s Nonce2 length %d too small for fast miners", + proxi->id, proxi->subid, proxi->si->url, size); } proxi->nonce2len = size; if (parent_proxy(proxi)) {