Compare commits

..

29 Commits

Author SHA1 Message Date
alfred-mk
26f6e9ea12 Updated the alias and balance functionality to match master 2025-07-14 09:45:55 +03:00
alfred-mk
b43c1f6c8e Merge branch 'master' into project-tidyup 2025-07-14 09:38:04 +03:00
alfred-mk
754008f0c1 git ignore the user-data files 2025-07-04 13:56:46 +03:00
alfred-mk
c8a705ff44 move voucher related tests 2025-07-03 17:57:24 +03:00
alfred-mk
a55d254c4f move transaction list related tests 2025-07-03 17:52:30 +03:00
alfred-mk
92af428af4 move send node related tests 2025-07-03 17:44:55 +03:00
alfred-mk
5e166fd680 move registration tests 2025-07-03 17:33:11 +03:00
alfred-mk
5d38359b66 move profile tests 2025-07-03 17:31:05 +03:00
alfred-mk
7c21b78332 move language tests 2025-07-03 17:22:06 +03:00
alfred-mk
916026985f move balance tests 2025-07-03 17:16:44 +03:00
alfred-mk
57b0fcb55f move authorization tests 2025-07-03 17:13:51 +03:00
alfred-mk
baa7526df3 move account_status tests 2025-07-03 17:07:26 +03:00
alfred-mk
f22f86a2fb move PIN tests to pin_test.go 2025-07-03 17:02:36 +03:00
alfred-mk
827debe020 added account_status.go for account status related functions 2025-07-03 16:55:57 +03:00
alfred-mk
2b557b27cf added authorization.go for authorization related functions 2025-07-03 16:52:59 +03:00
alfred-mk
b9aae610db added language.go for language related functions 2025-07-03 16:43:43 +03:00
alfred-mk
8297f012f4 added balance.go for balance related functions 2025-07-03 16:39:44 +03:00
alfred-mk
eafc0f69c7 added alias.go for alias related functions 2025-07-03 16:34:20 +03:00
alfred-mk
6c962baa81 added pools.go for pool related functions 2025-07-03 16:20:59 +03:00
alfred-mk
e6b97b9256 update the voucher functions to match master 2025-07-03 16:19:18 +03:00
alfred-mk
4e8b4c1df6 Merge branch 'master' into project-tidyup 2025-07-03 16:08:08 +03:00
alfred-mk
fea0befd9f added profile.go for profile related functionality 2025-07-01 02:04:45 +03:00
alfred-mk
857964f69a added send.go for voucher transfers 2025-07-01 02:01:45 +03:00
alfred-mk
164ce5ea5a added upsell.go for inviting valid users 2025-07-01 01:59:20 +03:00
alfred-mk
7b85451fd6 added vouchers.go 2025-07-01 01:57:32 +03:00
alfred-mk
a6cd3d93b4 added transactions.go for transaction histories 2025-07-01 01:55:30 +03:00
alfred-mk
9722df1149 added poolswap.go for pool swap functionality 2025-07-01 01:53:03 +03:00
alfred-mk
a9e0aebdde move PIN functionality to pin.go 2025-07-01 01:50:20 +03:00
alfred-mk
098ea93439 move create account functionality to the registration.go file 2025-07-01 01:44:38 +03:00
3 changed files with 6 additions and 10 deletions

View File

@@ -100,10 +100,6 @@ func (h *MenuHandlers) ViewPool(ctx context.Context, sym string, input []byte) (
flag_incorrect_pool, _ := h.flagManager.GetFlag("flag_incorrect_pool")
inputStr := string(input)
if inputStr == "0" || inputStr == "99" || inputStr == "88" || inputStr == "98" {
res.FlagReset = append(res.FlagReset, flag_incorrect_pool)
return res, nil
}
poolData, err := store.GetPoolData(ctx, h.userdataStore, sessionId, inputStr)
if err != nil {

View File

@@ -9,16 +9,14 @@ MAP check_balance
MOUT send 1
MOUT swap 2
MOUT vouchers 3
MOUT select_pool 4
MOUT account 5
MOUT help 6
MOUT account 4
MOUT help 5
MOUT quit 9
HALT
INCMP send 1
INCMP swap_to_list 2
INCMP my_vouchers 3
INCMP select_pool 4
INCMP my_account 5
INCMP help 6
INCMP my_account 4
INCMP help 5
INCMP quit 9
INCMP . *

View File

@@ -2,9 +2,11 @@ LOAD reset_account_authorized 16
RELOAD reset_account_authorized
MOUT select_voucher 1
MOUT voucher_details 2
MOUT select_pool 3
MOUT back 0
HALT
INCMP _ 0
INCMP select_voucher 1
INCMP voucher_details 2
INCMP select_pool 3
INCMP . *