Compare commits

...

2 Commits

Author SHA1 Message Date
UpstreamData
46b7352769 version: bump version number. 2023-02-23 15:39:37 -07:00
UpstreamData
e218c5039d bug: fix wrong LPM mode number for X19. 2023-02-23 15:39:08 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -466,7 +466,7 @@ class MinerConfig:
cfg["miner-mode"] = 1 # Sleep Mode
if self.autotuning_wattage < 1800:
cfg["miner-mode"] = 2 # LPM?
cfg["miner-mode"] = 3 # LPM
if not self.temp_mode == "auto":
cfg["bitmain-fan-ctrl"] = True

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyasic"
version = "0.30.5"
version = "0.30.6"
description = "A set of modules for interfacing with many common types of ASIC bitcoin miners, using both their API and SSH."
authors = ["UpstreamData <brett@upstreamdata.ca>"]
repository = "https://github.com/UpstreamData/pyasic"