Skip to content

Commit

Permalink
BLAHBLAH detected new block - when I specified -q I meant quiet pleas…
Browse files Browse the repository at this point in the history
…e! Also Alexey Panteleev (nVidia) is working in their Moscow office.
  • Loading branch information
cbuchner1 committed Feb 11, 2014
1 parent 9cb5f81 commit 9eb44d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ David Andersen (USA, Carnegie Mellon University): designed a low
improved memory access. Currently best
performing with high N-factor scrypt-jane.

Alexey Panteleev (USA, nVidia): submitted a kernel with improved
Alexey Panteleev (Moscow, nVidia): submitted a kernel with improved
memory access functions for Kepler devices
providing the fastest scrypt performance.

Expand Down
4 changes: 2 additions & 2 deletions cpu-miner.c
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ static void *longpoll_thread(void *userdata)
goto out;
}
if (likely(val)) {
applog(LOG_INFO, "LONGPOLL detected new block");
if (!opt_quiet) applog(LOG_INFO, "LONGPOLL detected new block");
soval = json_object_get(json_object_get(val, "result"), "submitold");
submit_old = soval ? json_is_true(soval) : false;
pthread_mutex_lock(&g_work_lock);
Expand Down Expand Up @@ -1096,7 +1096,7 @@ static void *stratum_thread(void *userdata)
time(&g_work_time);
pthread_mutex_unlock(&g_work_lock);
if (stratum.job.clean) {
applog(LOG_INFO, "Stratum detected new block");
if (!opt_quiet) applog(LOG_INFO, "Stratum detected new block");
restart_threads();
}
}
Expand Down

0 comments on commit 9eb44d0

Please sign in to comment.