tests: Update unittests.

This commit is contained in:
UpstreamData
2023-02-23 11:42:20 -07:00
parent 5ff0074d33
commit 2dc4b2cb8a
5 changed files with 227 additions and 0 deletions

View File

@@ -142,6 +142,7 @@ from .M31S_Plus import (
)
from .M31SE import M31SEV10, M31SEV20, M31SEV30
from .M32 import M32V10, M32V20
from .M32S import M32S
from .M33 import M33V10, M33V20, M33V30
from .M33S import M33SVG30
from .M33S_Plus import M33SPlusVH20, M33SPlusVH30

View File

@@ -339,6 +339,10 @@ MINER_CLASSES = {
"10": BTMinerM32V10,
"20": BTMinerM32V20,
},
"M32S": {
"Default": BTMinerM32S,
"BTMiner": BTMinerM32S,
},
"M33": {
"Default": BTMinerM33V10,
"BTMiner": BTMinerM33V10,

View File

@@ -142,6 +142,7 @@ from .M31S_Plus import (
)
from .M31SE import BTMinerM31SEV10, BTMinerM31SEV20, BTMinerM31SEV30
from .M32 import BTMinerM32V10, BTMinerM32V20
from .M32S import BTMinerM32S
from .M33 import BTMinerM33V10, BTMinerM33V20, BTMinerM33V30
from .M33S import BTMinerM33SVG30
from .M33S_Plus import BTMinerM33SPlusVH20, BTMinerM33SPlusVH30