From 275bb9c05ee6e6abc09f94df501e4394031b84d8 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 5 Nov 2012 18:05:25 +1100 Subject: [PATCH] Change status window message for GBT connected pools versus LP. --- cgminer.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cgminer.c b/cgminer.c index ab5657ef..50583311 100644 --- a/cgminer.c +++ b/cgminer.c @@ -1846,8 +1846,9 @@ static void curses_print_status(void) mvwprintw(statuswin, 4, 0, " Connected to multiple pools with%s LP", have_longpoll ? "": "out"); } else { - mvwprintw(statuswin, 4, 0, " Connected to %s with%s LP as user %s", - pool->sockaddr_url, have_longpoll ? "": "out", pool->rpc_user); + mvwprintw(statuswin, 4, 0, " Connected to %s with%s %s as user %s", + pool->sockaddr_url, have_longpoll ? "": "out", + pool->has_gbt ? "GBT" : "LP", pool->rpc_user); } wclrtoeol(statuswin); mvwprintw(statuswin, 5, 0, " Block: %s... Started: %s Best share: %s ", current_hash, blocktime, best_share);