bug: fix issues with bosminer multicommand, and update X17 to use BOSMiner instead of BOSer.

This commit is contained in:
UpstreamData
2024-01-30 13:34:00 -07:00
parent 2f719a03a4
commit be45eb7400
4 changed files with 19 additions and 13 deletions

View File

@@ -14,17 +14,17 @@
# limitations under the License. -
# ------------------------------------------------------------------------------
from pyasic.miners.backends import BOSer
from pyasic.miners.backends import BOSMiner
from pyasic.miners.models import T17, T17e, T17Plus
class BOSMinerT17(BOSer, T17):
class BOSMinerT17(BOSMiner, T17):
pass
class BOSMinerT17Plus(BOSer, T17Plus):
class BOSMinerT17Plus(BOSMiner, T17Plus):
pass
class BOSMinerT17e(BOSer, T17e):
class BOSMinerT17e(BOSMiner, T17e):
pass