Compare commits

...

2 Commits

Author SHA1 Message Date
Upstream Data
362b204c91 version: bump version number. 2023-11-29 20:45:46 -07:00
Upstream Data
952b660c05 bug: re-add missing socket check during scan. 2023-11-29 20:45:25 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -480,7 +480,7 @@ class MinerFactory:
async def _get_miner_type(self, ip: str):
tasks = [
asyncio.create_task(self._get_miner_web(ip)),
# asyncio.create_task(self._get_miner_socket(ip)),
asyncio.create_task(self._get_miner_socket(ip)),
]
return await concurrent_get_first_result(tasks, lambda x: x is not None)

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyasic"
version = "0.42.1"
version = "0.42.2"
description = "A simplified and standardized interface for Bitcoin ASICs."
authors = ["UpstreamData <brett@upstreamdata.ca>"]
repository = "https://github.com/UpstreamData/pyasic"