Browse Source

Bugfix: Debug message should show "Work stale due to work restart" when it's not a share

Luke Dashjr 13 years ago
parent
commit
b7a47b30db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      miner.c

+ 1 - 1
miner.c

@@ -2477,7 +2477,7 @@ static bool stale_work(struct work *work, bool share)
 		/* If the pool has asked us to restart since this work, it's stale */
 		if (work->work_restart_id != pool->work_restart_id)
 		{
-			applog(LOG_DEBUG, "Share stale due to work restart");
+			applog(LOG_DEBUG, "Work stale due to work restart");
 			return true;
 		}