Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cbf7eeb08d | ||
|
|
d34b35a82d | ||
|
|
5d57f35475 |
@@ -76,6 +76,8 @@ class LUXMiner(LuxOSFirmware):
|
||||
_rpc_cls = LUXMinerRPCAPI
|
||||
rpc: LUXMinerRPCAPI
|
||||
|
||||
supports_shutdown = True
|
||||
|
||||
data_locations = LUXMINER_DATA_LOC
|
||||
|
||||
async def fault_light_on(self) -> bool:
|
||||
|
||||
@@ -529,7 +529,11 @@ class MinerProtocol(Protocol):
|
||||
expected_fans=self.expected_fans,
|
||||
hashboards=[
|
||||
HashBoard(slot=i, expected_chips=self.expected_chips)
|
||||
for i in range(self.expected_hashboards)
|
||||
for i in range(
|
||||
self.expected_hashboards
|
||||
if self.expected_hashboards is not None
|
||||
else 0
|
||||
)
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "pyasic"
|
||||
version = "0.64.1"
|
||||
version = "0.64.2"
|
||||
description = "A simplified and standardized interface for Bitcoin ASICs."
|
||||
authors = ["UpstreamData <brett@upstreamdata.ca>"]
|
||||
repository = "https://github.com/UpstreamData/pyasic"
|
||||
|
||||
Reference in New Issue
Block a user