From 3bfa9820dd6f774ba0c819574124906a4a6eefd3 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Fri, 20 Feb 2026 13:35:28 +0300 Subject: [PATCH] remove debug statements --- handlers/application/send.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/handlers/application/send.go b/handlers/application/send.go index e59ad22..86a4e4a 100644 --- a/handlers/application/send.go +++ b/handlers/application/send.go @@ -414,8 +414,6 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte) return res, nil } - fmt.Println("got 2") - // Get the recipient's phone number to read other data items (*) recipientPhoneNumber, err := userStore.ReadEntry(ctx, sessionId, storedb.DATA_RECIPIENT_PHONE_NUMBER) if err != nil || !phone.IsValidPhoneNumber(string(recipientPhoneNumber)) { @@ -425,14 +423,10 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte) return res, nil } - fmt.Println("got 3:", string(recipientPhoneNumber)) - recipientActiveSym, recipientActiveAddress, recipientActiveDecimal, err := h.getRecipientData(ctx, string(recipientPhoneNumber)) if err != nil { return res, err } - fmt.Println("got 4") - // retrieve the max credit send amounts maxSAT, maxRAT, err := h.calculateSendCreditLimits(ctx, activePoolAddress, activeAddress, recipientActiveAddress, publicKey, activeDecimal, recipientActiveDecimal)