From b337c9260be3ffa229f8e89920802a057b8209db Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Thu, 15 Jan 2026 11:17:41 +0300 Subject: [PATCH] add a debug statement --- handlers/application/send.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handlers/application/send.go b/handlers/application/send.go index 53aa36a..7b09eea 100644 --- a/handlers/application/send.go +++ b/handlers/application/send.go @@ -384,6 +384,8 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte) logg.ErrorCtxf(ctx, "failed on calculateSendCreditLimits", "error", err) res.FlagReset = append(res.FlagReset, flag_swap_transaction) res.Content = l.Get("Maximum amount: %s %s\nEnter amount:", formattedBalance, string(activeSym)) + + fmt.Println("the FlagReset:", res.FlagReset, "the FlagSet:", res.FlagSet) return res, nil }