add new Antminer models (S19jPro+ and S19k Pro) (#75)

* Add S19jPro+ and S19K Pro

* typo
This commit is contained in:
JP Compagnone
2023-12-08 10:34:30 -05:00
committed by GitHub
parent 362b204c91
commit 9f42e6a3be
5 changed files with 30 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ from pyasic.miners.types import (
S19Pro,
S19j,
S19jPro,
S19jProPlus,
S19kPro,
S19XP,
)
@@ -36,5 +38,11 @@ class ePICS19j(ePIC, S19j):
class ePICS19jPro(ePIC, S19jPro):
pass
class ePICS19jProPlus(ePIC, S19jProPlus):
pass
class ePICS19kPro(ePIC, S19kPro):
pass
class ePICS19XP(ePIC, S19XP):
pass

View File

@@ -19,5 +19,7 @@ from .S19 import (
ePICS19Pro,
ePICS19j,
ePICS19jPro,
ePICS19jProPlus,
ePICS19kPro,
ePICS19XP,
)