Files
pyasic/pyasic/device/algorithm/hashrate/unit/handshake.py
2024-11-21 14:55:04 -07:00

17 lines
315 B
Python

from __future__ import annotations
from .base import AlgoHashRateUnitType
class HandshakeUnit(AlgoHashRateUnitType):
H = 1
KH = int(H) * 1000
MH = int(KH) * 1000
GH = int(MH) * 1000
TH = int(GH) * 1000
PH = int(TH) * 1000
EH = int(PH) * 1000
ZH = int(EH) * 1000
default = TH