Skip to content

Commit

Permalink
Merge pull request #5123 from jmacxx/add_sepa_countries
Browse files Browse the repository at this point in the history
Add four SEPA Payment Account countries: AD, SM, VA, JE.
  • Loading branch information
ripcurlx authored Feb 12, 2021
2 parents a520802 + a11d8a4 commit 8bcd32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/bisq/core/locale/CountryUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class CountryUtil {
public static List<Country> getAllSepaEuroCountries() {
List<Country> 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));

Expand Down Expand Up @@ -86,7 +86,7 @@ public static boolean containsAllSepaInstantEuroCountries(List<String> countryCo
public static List<Country> getAllSepaNonEuroCountries() {
List<Country> 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;
Expand Down

0 comments on commit 8bcd32f

Please sign in to comment.