removed the print debug statements
Some checks are pending
release / docker (push) Waiting to run

This commit is contained in:
Alfred Kamanda 2025-11-14 10:55:54 +03:00
parent 20cfb47940
commit c2cf8e91e5
Signed by: Alfred-mk
GPG Key ID: E60B2165A97F4D41

View File

@ -339,11 +339,8 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte)
if string(transactionType) == "normal" || sym == "max_amount" { if string(transactionType) == "normal" || sym == "max_amount" {
res.FlagReset = append(res.FlagReset, flag_swap_transaction) res.FlagReset = append(res.FlagReset, flag_swap_transaction)
fmt.Println("returning for a normal transaction")
res.Content = l.Get("Maximum amount: %s %s\nEnter amount:", formattedBalance, string(activeSym)) res.Content = l.Get("Maximum amount: %s %s\nEnter amount:", formattedBalance, string(activeSym))
fmt.Println("the final Content:", res.Content)
return res, nil return res, nil
} }