Test fix for TRY
As suspected: https://github.com/cake-tech/cake_wallet/actions/runs/4285241568/jobs/7463282181#step:13:306 This might not work depending on how the const is used, so will test the build
Justin Ehrenhofer committed
Feb 27, 2023 at 11:55 UTC
b5005400728bcdde02214ca594b8dc8d2bc13f62
1 file changed
+3
-3
lib/entities/fiat_currency.dart
+3
-3
@@ -9,7 +9,7 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
9
static List<FiatCurrency> get all => _all.values.toList();
10
11
static List<FiatCurrency> get currenciesAvailableToBuyWith =>
12
- [aed, aud, bgn, brl, cad, chf, clp, cop, czk, dkk, egp, eur, gbp, gtq, hkd, hrk, huf, idr, ils, inr, isk, jpy, krw, mad, mxn, myr, ngn, nok, nzd, php, pkr, pln, ron, sek, sgd, thb, try, twd, usd, vnd, zar];
12
+ [aed, aud, bgn, brl, cad, chf, clp, cop, czk, dkk, egp, eur, gbp, gtq, hkd, hrk, huf, idr, ils, inr, isk, jpy, krw, mad, mxn, myr, ngn, nok, nzd, php, pkr, pln, ron, sek, sgd, thb, turtry, twd, usd, vnd, zar];
13
14
static const aed = FiatCurrency(symbol: 'AED', countryCode: "are", fullName: "United Arab Emirates Dirham");
15
static const ars = FiatCurrency(symbol: 'ARS', countryCode: "arg", fullName: "Argentine Peso");
@@ -54,7 +54,7 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
54
static const sek = FiatCurrency(symbol: 'SEK', countryCode: "swe", fullName: "Swedish Krona");
55
static const sgd = FiatCurrency(symbol: 'SGD', countryCode: "sgp", fullName: "Singapore Dollar");
56
static const thb = FiatCurrency(symbol: 'THB', countryCode: "tha", fullName: "New Thaiwan Dollar");
57
- static const try = FiatCurrency(symbol: 'TRY', countryCode: "tur", fullName: "Turkish Lira");
57
+ static const turtry = FiatCurrency(symbol: 'TRY', countryCode: "tur", fullName: "Turkish Lira");
58
static const twd = FiatCurrency(symbol: 'TWD', countryCode: "twn", fullName: "Thai Baht");
59
static const uah = FiatCurrency(symbol: 'UAH', countryCode: "ukr", fullName: "Ukrainian Hryvnia");
60
static const usd = FiatCurrency(symbol: 'USD', countryCode: "usa", fullName: "United States Dollar");
@@ -105,7 +105,7 @@ class FiatCurrency extends EnumerableItem<String> with Serializable<String> {
105
FiatCurrency.sek.raw: FiatCurrency.sek,
106
FiatCurrency.sgd.raw: FiatCurrency.sgd,
107
FiatCurrency.thb.raw: FiatCurrency.thb,
108
- FiatCurrency.try.raw: FiatCurrency.try,
108
+ FiatCurrency.turtry.raw: FiatCurrency.turtry,
109
FiatCurrency.twd.raw: FiatCurrency.twd,
110
FiatCurrency.uah.raw: FiatCurrency.uah,
111
FiatCurrency.usd.raw: FiatCurrency.usd,