epic: remove v1 from ELITE miner

This commit is contained in:
John-Paul Compagnone
2025-03-18 11:06:04 -04:00
committed by Brett Rowan
parent 655cf6d0ac
commit 3cfc8dded9
5 changed files with 7 additions and 7 deletions

View File

@@ -34,7 +34,7 @@
- [ ] Setpoints - [ ] Setpoints
- [ ] Presets - [ ] Presets
::: pyasic.miners.blockminer.epic.blockminer.blockminer.ePICBlockMinerELITEv1 ::: pyasic.miners.blockminer.epic.blockminer.blockminer.ePICBlockMinerELITE1
handler: python handler: python
options: options:
show_root_heading: false show_root_heading: false

View File

@@ -480,7 +480,7 @@ class GoldshellModels(MinerModelType):
class ePICModels(MinerModelType): class ePICModels(MinerModelType):
BM520i = "BlockMiner 520i" BM520i = "BlockMiner 520i"
BM720i = "BlockMiner 720i" BM720i = "BlockMiner 720i"
eLITEv1 = "BlockMiner eLITE 1.0" eLITE1 = "BlockMiner eLITE 1.0"
S19jProDual = "S19j Pro Dual" S19jProDual = "S19j Pro Dual"
S19kProDual = "S19k Pro Dual" S19kProDual = "S19k Pro Dual"

View File

@@ -18,7 +18,7 @@ from pyasic.miners.backends import ePIC
from pyasic.miners.device.models import ( from pyasic.miners.device.models import (
BlockMiner520i, BlockMiner520i,
BlockMiner720i, BlockMiner720i,
BlockMinerELITEv1, BlockMinerELITE1,
) )
@@ -30,5 +30,5 @@ class ePICBlockMiner720i(ePIC, BlockMiner720i):
pass pass
class ePICBlockMinerELITEv1(ePIC, BlockMinerELITEv1): class ePICBlockMinerELITE1(ePIC, BlockMinerELITE1):
pass pass

View File

@@ -21,8 +21,8 @@ class BlockMiner720i(ePICMake):
algo = MinerAlgo.SHA256 algo = MinerAlgo.SHA256
class BlockMinerELITEv1(ePICMake): class BlockMinerELITE1(ePICMake):
raw_model = MinerModel.EPIC.eLITEv1 raw_model = MinerModel.EPIC.eLITE1
expected_chips = 105 expected_chips = 105
expected_fans = 4 expected_fans = 4

View File

@@ -595,7 +595,7 @@ MINER_CLASSES = {
"ANTMINER S19K PRO DUAL": ePICS19kProDual, "ANTMINER S19K PRO DUAL": ePICS19kProDual,
"BLOCKMINER 520I": ePICBlockMiner520i, "BLOCKMINER 520I": ePICBlockMiner520i,
"BLOCKMINER 720I": ePICBlockMiner720i, "BLOCKMINER 720I": ePICBlockMiner720i,
"BLOCKMINER ELITE V1.0": ePICBlockMinerELITEv1, "BLOCKMINER ELITE 1.0": ePICBlockMinerELITE1,
}, },
MinerTypes.HIVEON: { MinerTypes.HIVEON: {
None: HiveonModern, None: HiveonModern,