docs: fix issues with docs.

This commit is contained in:
UpstreamData
2024-01-16 15:55:01 -07:00
parent a0c76fe24f
commit 3be3086a38
19 changed files with 85 additions and 71 deletions

View File

@@ -17,5 +17,5 @@ from pyasic.miners.backends import GoldshellMiner
from pyasic.miners.types import KDMax
class BFGMinerGoldshellKDMax(GoldshellMiner, KDMax):
class GoldshellKDMax(GoldshellMiner, KDMax):
pass

View File

@@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and -
# limitations under the License. -
# ------------------------------------------------------------------------------
from .KDMax import BFGMinerGoldshellKDMax
from .KDMax import GoldshellKDMax

View File

@@ -334,7 +334,7 @@ MINER_CLASSES = {
"GOLDSHELL CK5": GoldshellCK5,
"GOLDSHELL HS5": GoldshellHS5,
"GOLDSHELL KD5": GoldshellKD5,
"GOLDSHELL KDMAX": BFGMinerGoldshellKDMax,
"GOLDSHELL KDMAX": GoldshellKDMax,
},
MinerTypes.BRAIINS_OS: {
None: BOSMiner,