Skip to content

Commit

Permalink
Bugfix: zeusminer: Retry detection on failure - ZM fails detection 1 …
Browse files Browse the repository at this point in the history
…/ ~30 times
  • Loading branch information
nwoolls committed Jul 26, 2014
1 parent c04fdc6 commit 8877c28
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion driver-zeusminer.c
Expand Up @@ -106,7 +106,9 @@ bool zeusminer_detect_one(const char *devpath)

info->golden_ob = scrypt_golden_ob;

if (!icarus_detect_custom(devpath, drv, info))
if (!icarus_detect_custom(devpath, drv, info) &&
//ZM doesn't respond to detection 1 out of ~30 times
!icarus_detect_custom(devpath, drv, info))
{
free(info);
return false;
Expand Down

0 comments on commit 8877c28

Please sign in to comment.