From 5f834726b8a002975f8651a97e11cfe61084e34e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Tue, 10 Oct 2023 15:15:10 +0200 Subject: [PATCH] from float to satoshi (#134) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- x/dao/util.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/dao/util.go b/x/dao/util.go index 794abdb..8a375d8 100644 --- a/x/dao/util.go +++ b/x/dao/util.go @@ -1,10 +1,10 @@ package dao func GetReissuanceCommand(asset_id string, BlockHeight int64) string { - return "reissueasset " + asset_id + " 998.69" + return "reissueasset " + asset_id + " 99869000000" } func IsValidReissuanceCommand(reissuance_str string, asset_id string, BlockHeight uint64) bool { - expected := "reissueasset " + asset_id + " 998.69" + expected := "reissueasset " + asset_id + " 99869000000" return reissuance_str == expected }