Browse Source

WORKAROUND on hashrate

Xiangfu 13 years ago
parent
commit
5567b0edd6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      driver-avalon.c

+ 1 - 1
driver-avalon.c

@@ -763,7 +763,7 @@ static int64_t avalon_scanhash(struct thr_info *thr, struct work **work,
 	       info->fan0, info->fan1, info->fan2,
 	       info->temp0, info->temp1, info->temp2, info->temp_max);
 
-	return (hash_count ? hash_count :
+	return (hash_count ? (hash_count * 2) :
 		((int64_t)256*1024*1024)*info->miner_count*info->asic_count);
 }