Merge pull request #146 from UpstreamData/fix_typo

fix typo
This commit is contained in:
Brett Rowan
2024-05-17 09:02:22 -06:00
committed by GitHub

View File

@@ -270,7 +270,7 @@ class ePIC(ePICFirmware):
ideal = hb["Hashrate"][1] / 100 ideal = hb["Hashrate"][1] / 100
hashrate += hb["Hashrate"][0] / ideal 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 self.algo.unit.default
) )
except (LookupError, ValueError, TypeError): except (LookupError, ValueError, TypeError):