diff --git a/nibiru/utils.py b/nibiru/utils.py index a5ce6c16..fbfc8e0b 100644 --- a/nibiru/utils.py +++ b/nibiru/utils.py @@ -76,10 +76,6 @@ def to_sdk_dec(dec: float) -> str: return combined_str -def from_sdk_dec_24(dec_str: str) -> float: - return float(dec_str) * 1e-24 - - def from_sdk_dec_n(dec_str: str, n: int = 6) -> float: return float(dec_str) * 10 ** (-n)