Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
099ec35a8f | ||
|
|
113dfb9170 | ||
|
|
8d19e0ebbb |
@@ -134,7 +134,6 @@ class FanModeImmersion(MinerConfigValue):
|
||||
|
||||
def as_bosminer(self) -> dict:
|
||||
return {
|
||||
"temp_control": {"mode": "disabled"},
|
||||
"fan_control": {"min_fans": 0},
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "pyasic"
|
||||
version = "0.54.17"
|
||||
version = "0.54.18"
|
||||
description = "A simplified and standardized interface for Bitcoin ASICs."
|
||||
authors = ["UpstreamData <brett@upstreamdata.ca>"]
|
||||
repository = "https://github.com/UpstreamData/pyasic"
|
||||
|
||||
@@ -24,6 +24,7 @@ from pyasic.rpc.bmminer import BMMinerRPCAPI
|
||||
from pyasic.rpc.bosminer import BOSMinerRPCAPI
|
||||
from pyasic.rpc.btminer import BTMinerRPCAPI
|
||||
from pyasic.rpc.cgminer import CGMinerRPCAPI
|
||||
from pyasic.rpc.gcminer import GCMinerRPCAPI
|
||||
from pyasic.rpc.luxminer import LUXMinerRPCAPI
|
||||
|
||||
|
||||
@@ -159,6 +160,12 @@ class TestCGMinerAPI(TestAPIBase):
|
||||
self.api_str = "CGMiner"
|
||||
|
||||
|
||||
class TestGCMinerRPCAPI(TestAPIBase):
|
||||
def setUpData(self):
|
||||
self.api = GCMinerRPCAPI(self.ip)
|
||||
self.api_str = "GCMiner"
|
||||
|
||||
|
||||
class TestLuxOSAPI(TestAPIBase):
|
||||
def setUpData(self):
|
||||
self.api = LUXMinerRPCAPI(self.ip)
|
||||
|
||||
Reference in New Issue
Block a user