From a11d8a42c3f5a9054db01692336ebada97001fd0 Mon Sep 17 00:00:00 2001 From: jmacxx <47253594+jmacxx@users.noreply.github.com> Date: Wed, 27 Jan 2021 23:20:30 -0600 Subject: [PATCH] Add 4 missing SEPA countries AD, SM, VA, JE. --- core/src/main/java/bisq/core/locale/CountryUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/bisq/core/locale/CountryUtil.java b/core/src/main/java/bisq/core/locale/CountryUtil.java index 3a3f9ced561..665e6ab1b45 100644 --- a/core/src/main/java/bisq/core/locale/CountryUtil.java +++ b/core/src/main/java/bisq/core/locale/CountryUtil.java @@ -37,7 +37,7 @@ public class CountryUtil { public static List getAllSepaEuroCountries() { List list = new ArrayList<>(); String[] codes = {"AT", "BE", "CY", "DE", "EE", "FI", "FR", "GR", "IE", - "IT", "LV", "LT", "LU", "MC", "MT", "NL", "PT", "SK", "SI", "ES"}; + "IT", "LV", "LT", "LU", "MC", "MT", "NL", "PT", "SK", "SI", "ES", "AD", "SM", "VA"}; populateCountryListByCodes(list, codes); list.sort((a, b) -> a.name.compareTo(b.name)); @@ -86,7 +86,7 @@ public static boolean containsAllSepaInstantEuroCountries(List countryCo public static List getAllSepaNonEuroCountries() { List list = new ArrayList<>(); String[] codes = {"BG", "HR", "CZ", "DK", "GB", "HU", "PL", "RO", - "SE", "IS", "NO", "LI", "CH"}; + "SE", "IS", "NO", "LI", "CH", "JE"}; populateCountryListByCodes(list, codes); list.sort((a, b) -> a.name.compareTo(b.name)); return list;