From 398610924b5b0c40bdb818dfd0bd244c114b6b4f Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Wed, 26 Nov 2025 13:02:26 +0300 Subject: [PATCH] removed the debug output --- handlers/application/send.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/handlers/application/send.go b/handlers/application/send.go index f681926..15751e1 100644 --- a/handlers/application/send.go +++ b/handlers/application/send.go @@ -313,8 +313,6 @@ func (h *MenuHandlers) ResetTransactionAmount(ctx context.Context, sym string, i func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte) (resource.Result, error) { var res resource.Result - fmt.Println("running in MaxAmount with sym:", sym) - sessionId, ok := ctx.Value("SessionId").(string) if !ok { return res, fmt.Errorf("missing session") @@ -341,7 +339,6 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte) if string(transactionType) == "normal" || sym == "send_max_amount" { res.FlagReset = append(res.FlagReset, flag_swap_transaction) - fmt.Println("running in send_max_amount with:", formattedBalance, string(activeSym)) res.Content = l.Get("Maximum amount: %s %s\nEnter amount:", formattedBalance, string(activeSym)) return res, nil