From 6159686a8e64131393fac364f6b11ccfa160909b Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Tue, 19 Nov 2024 16:21:55 +0300 Subject: [PATCH] update function comment --- internal/handlers/ussd/menuhandler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/handlers/ussd/menuhandler.go b/internal/handlers/ussd/menuhandler.go index 5896b90..065da85 100644 --- a/internal/handlers/ussd/menuhandler.go +++ b/internal/handlers/ussd/menuhandler.go @@ -1754,8 +1754,8 @@ func (h *Handlers) GetTransactionsList(ctx context.Context, sym string, input [] return res, nil } -// ViewTransactionStatement retrieves the token holding and balance from the subprefixDB -// and displays it to the user for them to select it +// ViewTransactionStatement retrieves the transaction statement +// and displays it to the user func (h *Handlers) ViewTransactionStatement(ctx context.Context, sym string, input []byte) (resource.Result, error) { var res resource.Result sessionId, ok := ctx.Value("SessionId").(string)