changed the way antminers and whatsminers are handled in the factory to allow for more precision on chip counts
This commit is contained in:
12
miners/antminer/bosminer/X19/S19j.py
Normal file
12
miners/antminer/bosminer/X19/S19j.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from miners.bosminer import BOSMiner
|
||||
|
||||
|
||||
class BOSMinerS19j(BOSMiner):
|
||||
def __init__(self, ip: str) -> None:
|
||||
super().__init__(ip)
|
||||
self.api_type = "BOSMiner"
|
||||
self.model = "S19j"
|
||||
self.nominal_chips = 114
|
||||
|
||||
def __repr__(self) -> str:
|
||||
return f"BOSMinerS19j: {str(self.ip)}"
|
||||
Reference in New Issue
Block a user