added an old version of Bosminer for non plus miners to be able to update

This commit is contained in:
UpstreamData
2022-05-16 11:24:32 -06:00
parent 75934fd7fe
commit 03ebcacca5
4 changed files with 81 additions and 18 deletions

View File

@@ -42,9 +42,9 @@ class BaseMiner:
except Exception as e:
# logging.warning(f"{self} raised an exception: {e}")
raise e
except OSError:
except OSError as e:
logging.warning(f"Connection refused: {self}")
return None
raise e
except Exception as e:
# logging.warning(f"{self} raised an exception: {e}")
raise e