added more new whatsminer types

This commit is contained in:
UpstreamData
2022-06-06 10:06:17 -06:00
parent 264db3bdd6
commit 481d31a0f1
6 changed files with 77 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ from miners._types import (
M30SPlus,
M30SPlusVE40,
M30SPlusVF20,
M30SPlusVG60,
) # noqa - Ignore access to _module
@@ -22,3 +23,9 @@ class BTMinerM30SPlusVF20(BTMiner, M30SPlusVF20):
def __init__(self, ip: str) -> None:
super().__init__(ip)
self.ip = ip
class BTMinerM30SPlusVG60(BTMiner, M30SPlusVG60):
def __init__(self, ip: str) -> None:
super().__init__(ip)
self.ip = ip