Skip to content

Commit 3ffb2c7

Browse files
Merge pull request #8006 from HenrikJannsen/Add-more-sepa-countries-supporting-EURO
Add more sepa countries supporting EURO
2 parents a27815d + dff7d7b commit 3ffb2c7

1 file changed

Lines changed: 28 additions & 2 deletions

File tree

core/src/main/java/bisq/core/locale/CountryUtil.java

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,34 @@
3737
public class CountryUtil {
3838
public static List<Country> getAllSepaEuroCountries() {
3939
List<Country> list = new ArrayList<>();
40-
String[] codes = {"AT", "BE", "CY", "DE", "EE", "FI", "FR", "GR", "IE",
41-
"IT", "LV", "LT", "LU", "MC", "MT", "NL", "PT", "SK", "SI", "ES", "AD", "SM", "VA"};
40+
String[] codes = {
41+
"AD", // Andorra
42+
"AT", // Austria
43+
"BE", // Belgium
44+
"CY", // Cyprus
45+
"DE", // Germany
46+
"EE", // Estonia
47+
"ES", // Spain
48+
"FI", // Finland
49+
"FR", // France
50+
"GR", // Greece
51+
"HR", // Croatia
52+
"IE", // Ireland
53+
"IT", // Italy
54+
"LT", // Lithuania
55+
"LU", // Luxembourg
56+
"LV", // Latvia
57+
"MC", // Monaco
58+
"ME", // Montenegro
59+
"MT", // Malta
60+
"NL", // Netherlands
61+
"PT", // Portugal
62+
"SI", // Slovenia
63+
"SK", // Slovakia
64+
"SM", // San Marino
65+
"VA", // Vatican City
66+
"XK" // Kosovo
67+
};
4268
populateCountryListByCodes(list, codes);
4369
list.sort((a, b) -> a.name.compareTo(b.name));
4470

0 commit comments

Comments
 (0)