Browse Source

Remove LW from status line, since it is basically useless

Luke Dashjr 12 years ago
parent
commit
63b256534a
2 changed files with 2 additions and 4 deletions
  1. 1 2
      README
  2. 1 2
      miner.c

+ 1 - 2
README

@@ -414,10 +414,9 @@ The number of hardware erorrs
 The utility defines as the number of shares / minute
 The utility defines as the number of shares / minute
 
 
 The BFGMiner status line shows:
 The BFGMiner status line shows:
- ST: 1  LW: 8  GF: 1  NB: 1  AS: 0  RF: 1  E: 2.42
+ ST: 1  GF: 1  NB: 1  AS: 0  RF: 1  E: 2.42
 
 
 ST is STaged work items (ready to use).
 ST is STaged work items (ready to use).
-LW is Locally generated Work items
 GF is Getwork Fail Occasions (server slow to provide work)
 GF is Getwork Fail Occasions (server slow to provide work)
 NB is New Blocks detected on the network
 NB is New Blocks detected on the network
 AS is Active Submissions (shares in the process of submitting)
 AS is Active Submissions (shares in the process of submitting)

+ 1 - 2
miner.c

@@ -2479,9 +2479,8 @@ static void curses_print_status(void)
 	mvwhline(statuswin, 1, 0, '-', 80);
 	mvwhline(statuswin, 1, 0, '-', 80);
 	mvwprintw(statuswin, 2, 0, " %s", statusline);
 	mvwprintw(statuswin, 2, 0, " %s", statusline);
 	wclrtoeol(statuswin);
 	wclrtoeol(statuswin);
-	mvwprintw(statuswin, 3, 0, " ST: %d  LW: %d  GF: %d  NB: %d  AS: %d  RF: %d  E: %.2f",
+	mvwprintw(statuswin, 3, 0, " ST: %d  GF: %d  NB: %d  AS: %d  RF: %d  E: %.2f",
 		total_staged(),
 		total_staged(),
-		local_work,
 		total_go,
 		total_go,
 		new_blocks,
 		new_blocks,
 		total_submitting,
 		total_submitting,