From 8ce17a8d1e841cee9b7ace9a1d8583a54215ce27 Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Thu, 30 Oct 2025 11:11:39 +0300 Subject: [PATCH] add a sym for the credit_max_amount --- handlers/local.go | 1 + 1 file changed, 1 insertion(+) diff --git a/handlers/local.go b/handlers/local.go index 836db72..0319a47 100644 --- a/handlers/local.go +++ b/handlers/local.go @@ -86,6 +86,7 @@ func (ls *LocalHandlerService) GetHandler(accountService remote.AccountService) ls.DbRs.AddLocalFunc("transaction_reset", appHandlers.TransactionReset) ls.DbRs.AddLocalFunc("invite_valid_recipient", appHandlers.InviteValidRecipient) ls.DbRs.AddLocalFunc("max_amount", appHandlers.MaxAmount) + ls.DbRs.AddLocalFunc("credit_max_amount", appHandlers.MaxAmount) ls.DbRs.AddLocalFunc("validate_amount", appHandlers.ValidateAmount) ls.DbRs.AddLocalFunc("reset_transaction_amount", appHandlers.ResetTransactionAmount) ls.DbRs.AddLocalFunc("get_recipient", appHandlers.GetRecipient)