From 19e232ddb99208c9c1aa74eafe502c84736fc5d0 Mon Sep 17 00:00:00 2001 From: John-Paul Compagnone Date: Fri, 17 May 2024 11:01:01 -0400 Subject: [PATCH] fix typo --- pyasic/miners/backends/epic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyasic/miners/backends/epic.py b/pyasic/miners/backends/epic.py index ac537d62..e3134dfc 100644 --- a/pyasic/miners/backends/epic.py +++ b/pyasic/miners/backends/epic.py @@ -270,7 +270,7 @@ class ePIC(ePICFirmware): ideal = hb["Hashrate"][1] / 100 hashrate += hb["Hashrate"][0] / ideal - return AlgoHashRate.SHA256(hashrate, HashUnit.SHA256.GH).int( + return AlgoHashRate.SHA256(hashrate, HashUnit.SHA256.MH).into( self.algo.unit.default ) except (LookupError, ValueError, TypeError):