Merge branch 'UpstreamData:master' into master

This commit is contained in:
Temi
2024-05-16 19:00:45 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -444,7 +444,7 @@ class MiningModeConfig(MinerConfigOption):
)
else:
return cls.hashrate_tuning(
hashrate=algo_info["ChipTune"]["Target"],
hashrate=algo_info["ChipTune"].get("Target"),
algo=TunerAlgo.chip_tune(),
)
else:

View File

@@ -317,7 +317,7 @@ class ePIC(ePICFirmware):
except APIError:
pass
if web_capabilities is not None:
if web_capabilities is None:
try:
web_capabilities = await self.web.capabilities()
except APIError:

View File

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