Browse Source

Bugfix: Stratum: Wait a bit for a response before assuming the pool is hiding block contents

Luke Dashjr 12 years ago
parent
commit
f1971de7c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      util.c

+ 1 - 1
util.c

@@ -1504,7 +1504,7 @@ void stratum_probe_transparency(struct pool *pool)
 	        pool->swork.job_id);
 	stratum_send(pool, s, sLen);
 	if ((!pool->swork.opaque) && !timer_isset(&pool->swork.tv_transparency))
-		cgtime(&pool->swork.tv_transparency);
+		timer_set_delay_from_now(&pool->swork.tv_transparency, 21093750L);
 	pool->swork.transparency_probed = true;
 }