From 3c70130ae20e44d85ff8f709dfcc6ba22376e18c Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 24 May 2014 15:25:07 +1000 Subject: [PATCH] Only show user share summary on block solve if they had any --- src/stratifier.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stratifier.c b/src/stratifier.c index 2a2e822e..b5300b41 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -841,6 +841,8 @@ static void block_solve(ckpool_t *ckp) double residual, shares; shares = instance->pplns_shares; + if (!shares) + continue; residual = shares * retain; LOGWARNING("User %s: Credited: %.0f Remaining: %.0f", instance->username, shares, residual);