From 03d6cbd429874e412fd7856d388955ee89055c41 Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Fri, 14 Nov 2025 10:46:22 +0300 Subject: [PATCH] added a debug for the returned content --- handlers/application/send.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handlers/application/send.go b/handlers/application/send.go index b67b44f..b6dbb28 100644 --- a/handlers/application/send.go +++ b/handlers/application/send.go @@ -342,6 +342,8 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte) fmt.Println("returning for a normal transaction") res.Content = l.Get("Maximum amount: %s %s\nEnter amount:", formattedBalance, string(activeSym)) + + fmt.Println("the final Content:", res.Content) return res, nil }