1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Disable stratum detection with scrypt.

This commit is contained in:
Con Kolivas 2012-10-12 14:53:16 +11:00
parent c3bdb359d5
commit 7c7e51166b

View File

@ -565,6 +565,9 @@ 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)
{
if (opt_scrypt)
return false;
if (!extract_sockaddr(pool, url))
return false;