Commit c73e9e7a4f457e94d0f61e0cfc9e8f4531a99f4b

Con Kolivas 2014-03-20T14:10:20

Always show the address we're solo mining to to avoid confusion for when no address is set.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 5b07642..649415e 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -6426,7 +6426,7 @@ static bool setup_gbt_solo(CURL *curl, struct pool *pool)
 		applog(LOG_ERR, "Bitcoin address %s is NOT valid", opt_btc_address);
 		goto out;
 	}
-	applog(LOG_DEBUG, "Bitcoin address %s is valid", opt_btc_address);
+	applog(LOG_NOTICE, "Solo mining to valid address: %s", opt_btc_address);
 	ret = true;
 	address_to_pubkeyhash(pool->script_pubkey, opt_btc_address);
 	hex2bin(scriptsig_header_bin, scriptsig_header, 41);