From 58d8fdd8ed610d263db5fb609246d0000e8cac5b Mon Sep 17 00:00:00 2001 From: topianet <130279998+fabbez@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:58:05 +0100 Subject: [PATCH] Update amount_test.go --- util/amount_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/util/amount_test.go b/util/amount_test.go index 962af6ad6..443754598 100644 --- a/util/amount_test.go +++ b/util/amount_test.go @@ -5,11 +5,11 @@ package util_test import ( - "github.com/kaspanet/kaspad/domain/consensus/utils/constants" + "github.com/fabbez/topiad/domain/consensus/utils/constants" "math" "testing" - . "github.com/kaspanet/kaspad/util" + . "github.com/fabbez/topiad/util" ) func TestAmountCreation(t *testing.T) { @@ -28,7 +28,7 @@ func TestAmountCreation(t *testing.T) { }, { name: "max producible", - amount: 29e9, + amount: 58e9, valid: true, expected: Amount(constants.MaxSompi), }, @@ -105,8 +105,8 @@ func TestAmountUnitConversions(t *testing.T) { name: "MKAS", amount: Amount(constants.MaxSompi), unit: AmountMegaKAS, - converted: 29000, - s: "29000 MKAS", + converted: 58000, + s: "58000 MKAS", }, { name: "kKAS",