From 684c6020cbd81bb16291b8efa3fe4ae48821270c Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Tue, 3 Jul 2018 12:10:52 -0700 Subject: [PATCH] frontend: whitelist currencies two more currencies Signed-off-by: Ahmet Alp Balkan --- src/frontend/main.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/frontend/main.go b/src/frontend/main.go index f2b6cab..0d1f4b1 100644 --- a/src/frontend/main.go +++ b/src/frontend/main.go @@ -25,7 +25,12 @@ const ( var ( whitelistedCurrencies = map[string]bool{ - "USD": true, "EUR": true, "CAD": true, "JPY": true} + "USD": true, + "EUR": true, + "CAD": true, + "JPY": true, + "GBP": true, + "TRY": true} ) type ctxKeySessionID struct{}