From b3d251638f608bb011898c753a9eeca69534ee52 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 16 Jan 2015 13:31:54 +1100 Subject: [PATCH] Only add authorised clients to disconnected list Conflicts: src/stratifier.c --- src/stratifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stratifier.c b/src/stratifier.c index a31abf7e..e9de70e3 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -1234,7 +1234,7 @@ static void drop_client(sdata_t *sdata, int64_t id) HASH_DEL(sdata->stratum_instances, client); HASH_FIND(hh, sdata->disconnected_instances, &client->enonce1_64, sizeof(uint64_t), old_client); /* Only keep around one copy of the old client in server mode */ - if (!client->ckp->proxy && !old_client && client->enonce1_64) + if (!client->ckp->proxy && !old_client && client->enonce1_64 && dec) HASH_ADD(hh, sdata->disconnected_instances, enonce1_64, sizeof(uint64_t), client); else { if (client->user_instance)