From f48df4205a602c332747bfa46839d2c04f9bc81c Mon Sep 17 00:00:00 2001 From: woodser Date: Fri, 17 Jan 2025 21:11:37 -0500 Subject: [PATCH] update divide and multiply utils for bigints --- src/utils/HavenoUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/HavenoUtils.ts b/src/utils/HavenoUtils.ts index fdf47fac..4b4b765c 100644 --- a/src/utils/HavenoUtils.ts +++ b/src/utils/HavenoUtils.ts @@ -129,7 +129,7 @@ export default class HavenoUtils { * @returns {number} the result */ static divide(au1: bigint, au2: bigint): number { - return this.atomicUnitsToXmr(au1) / this.atomicUnitsToXmr(au2); + return new Decimal(au1.toString()).div(new Decimal(au2.toString())).toDecimalPlaces(12, Decimal.ROUND_HALF_UP).toNumber(); } /** @@ -140,7 +140,7 @@ export default class HavenoUtils { * @returns the product as a bigint */ static multiply(a: bigint, b: number | bigint): bigint { - return BigInt((new Decimal(a.toString()).mul(new Decimal(b.toString())).toFixed(0))); + return BigInt(new Decimal(a.toString()).mul(new Decimal(b.toString())).toDecimalPlaces(0, Decimal.ROUND_HALF_UP).toString()); } /**