I can see in line 1109 of cgminer.c for the -gekko build that it has #xnsub there, it just doesnt work?
https://github.com/wareck/cgminer-gekko/blob/master/cgminer.cstatic 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, "#[b]xnsub[/b]")) {
pool->extranonce_subscribe = true;
applog(LOG_DEBUG, "Pool %d extranonce subscribing enabled.", pool->pool_no);
}
return NULL;
}
I tried using --extranonce-subscribe in the launch parameters, unrecognized option
Also tried "extranonce-subscribe" : "true" in a conf file, but it doesnt seem to have any effect.
OPT_WITHOUT_ARG([b]"--extranonce-subscribe[/b]",
set_extranonce_subscribe, NULL,
"Enable 'extranonce' stratum subscribe"),
if (pool->extranonce_subscribe)
fputs("\n\t\t\[b]"extranonce-subscribe\" : true,"[/b], 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));