From df346876d8efaf72122d92db53737c1a9a722590 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sun, 7 Feb 2016 15:35:01 +1100 Subject: [PATCH] Only send node workinfo in pool mode --- src/stratifier.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stratifier.c b/src/stratifier.c index 24b9842b..ecc92702 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -958,7 +958,8 @@ static void send_workinfo(ckpool_t *ckp, sdata_t *sdata, const workbase_t *wb) "createcode", __func__, "createinet", ckp->serverurl[0]); ckdbq_add(ckp, ID_WORKINFO, val); - send_node_workinfo(sdata, wb); + if (!ckp->proxy) + send_node_workinfo(sdata, wb); } static void send_ageworkinfo(ckpool_t *ckp, const int64_t id)