|
@@ -401,7 +401,7 @@ static struct pool *currentpool = NULL;
|
|
|
int total_pools, enabled_pools;
|
|
|
enum pool_strategy pool_strategy = POOL_FAILOVER;
|
|
|
int opt_rotate_period;
|
|
|
-static int total_urls, total_users, total_passes, total_userpasses;
|
|
|
+static int total_urls, total_users, total_passes, total_userpasses, total_extranonce;
|
|
|
|
|
|
static
|
|
|
#ifndef HAVE_CURSES
|
|
@@ -719,6 +719,7 @@ struct pool *add_pool(void)
|
|
|
pool->rpc_proxy = NULL;
|
|
|
pool->quota = 1;
|
|
|
adjust_quota_gcd();
|
|
|
+ pool->extranonce_subscribe = false;
|
|
|
|
|
|
return pool;
|
|
|
}
|
|
@@ -865,7 +866,6 @@ static char *set_rr(enum pool_strategy *strategy)
|
|
|
* stratum+tcp or by detecting a stratum server response */
|
|
|
bool detect_stratum(struct pool *pool, char *url)
|
|
|
{
|
|
|
- check_extranonce_option(pool, url);
|
|
|
if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
|
|
|
return false;
|
|
|
|
|
@@ -913,6 +913,10 @@ static char *set_url(char *arg)
|
|
|
struct pool *pool = add_url();
|
|
|
|
|
|
setup_url(pool, arg);
|
|
|
+ if (strstr(pool->rpc_url, ".nicehash.com") || strstr(pool->rpc_url, "#xnsub")) {
|
|
|
+ pool->extranonce_subscribe = true;
|
|
|
+ applog(LOG_DEBUG, "Pool %d extranonce subscribing enabled.", pool->pool_no);
|
|
|
+ }
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
@@ -1001,6 +1005,21 @@ static char *set_userpass(const char *arg)
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
|
+static char *set_extranonce_subscribe(char *arg)
|
|
|
+{
|
|
|
+ struct pool *pool;
|
|
|
+
|
|
|
+ total_extranonce++;
|
|
|
+ if (total_extranonce > total_pools)
|
|
|
+ add_pool();
|
|
|
+
|
|
|
+ pool = pools[total_extranonce - 1];
|
|
|
+ applog(LOG_DEBUG, "Enable extranonce subscribe on %d", pool->pool_no);
|
|
|
+ opt_set_bool(&pool->extranonce_subscribe);
|
|
|
+
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+
|
|
|
static char *enable_debug(bool *flag)
|
|
|
{
|
|
|
*flag = true;
|
|
@@ -5159,6 +5178,8 @@ void write_config(FILE *fcfg)
|
|
|
pool->rpc_proxy ? "|" : "",
|
|
|
json_escape(pool->rpc_url));
|
|
|
}
|
|
|
+ if (pool->extranonce_subscribe)
|
|
|
+ fputs("\n\t\t\"extranonce-subscribe\" : true,", fcfg);
|
|
|
fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
|
|
|
fprintf(fcfg, "\n\t\t\"pass\" : \"%s\"\n\t}", json_escape(pool->rpc_pass));
|
|
|
}
|
|
@@ -6596,7 +6617,6 @@ static void *longpoll_thread(void *userdata);
|
|
|
static bool stratum_works(struct pool *pool)
|
|
|
{
|
|
|
applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
|
|
|
- check_extranonce_option(pool, pool->stratum_url);
|
|
|
if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
|
|
|
return false;
|
|
|
|