From e4a0f2451a6af3be046d754bc1e26aee87ec3411 Mon Sep 17 00:00:00 2001 From: Brett Rowan <121075405+b-rowan@users.noreply.github.com> Date: Sat, 10 Feb 2024 15:39:00 -0700 Subject: [PATCH] Attempt to fix goldshell mode issues. --- pyasic/config/mining.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyasic/config/mining.py b/pyasic/config/mining.py index cb968949..bbfd1839 100644 --- a/pyasic/config/mining.py +++ b/pyasic/config/mining.py @@ -75,7 +75,7 @@ class MiningModeSleep(MinerConfigValue): return {"ptune": {"algo": "Sleep", "target": 0}} def as_goldshell(self) -> dict: - return {"settings": {"select": 2}} + return {"settings": {"select": 3}} @dataclass