From bb3936b910cc7a2988d35f40ed05188fcb387384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Tue, 14 Nov 2023 10:21:07 +0100 Subject: [PATCH] fixed typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- x/dao/keeper/distribution.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/dao/keeper/distribution.go b/x/dao/keeper/distribution.go index 9958f458..99339c9d 100644 --- a/x/dao/keeper/distribution.go +++ b/x/dao/keeper/distribution.go @@ -84,12 +84,12 @@ func ComputeDistribution(lastReissuance int64, BlockHeight int64, amount uint64) func getUint64FromTXString(ctx sdk.Context, tx string) (amount uint64, err error) { subStrings := strings.Split(tx, " ") if len(subStrings) < 3 { - ctx.Logger().Error("Reissue TX string is shorter than expected. " + tx) + ctx.Logger().Error("Reissue tx string is shorter than expected. " + tx) } else { value := subStrings[2] amount, err = util.RDDLTokenStringToUint(value) if err != nil { - ctx.Logger().Error("Reissue TX string value is invalid " + subStrings[2]) + ctx.Logger().Error("Reissue tx string value is invalid " + subStrings[2]) } } return amount, err