bug: fix hashboard count on A11MX

This commit is contained in:
Upstream Data
2024-10-30 10:07:59 -06:00
parent ad28ba0b3e
commit b8874092ad
2 changed files with 5 additions and 0 deletions

View File

@@ -19,3 +19,5 @@ from pyasic.miners.device.makes import InnosiliconMake
class A11MX(InnosiliconMake):
raw_model = MinerModel.INNOSILICON.A11MX
expected_hashboards = 4

View File

@@ -127,6 +127,9 @@ class InnosiliconWebAPI(BaseWebAPI):
async def get_all(self) -> dict:
return await self.send_command("getAll")
async def summary(self) -> dict:
return await self.send_command("summary")
async def get_error_detail(self) -> dict:
return await self.send_command("getErrorDetail")