CAKE-306 | fixed settings_store.dart and di.dart

This commit is contained in:
OleksandrSobol 2021-06-02 20:09:39 +03:00
parent 90d53c9f6e
commit ee6b8767d6
2 changed files with 6 additions and 6 deletions

View file

@ -155,7 +155,7 @@ Future setup(
(secrets.wyreApiKey?.isNotEmpty ?? false) &&
(secrets.wyreAccountId?.isNotEmpty ?? false);
var isMoonPayEnabled = false;
/*var isMoonPayEnabled = false;
try {
final locale = await Devicelocale.currentLocale;
final deviceCountryCode = locale.split('_').last;
@ -163,11 +163,11 @@ Future setup(
} catch (e) {
isMoonPayEnabled = false;
print(e.toString());
}
}*/
final settingsStore = await SettingsStoreBase.load(
nodeSource: _nodeSource, isBitcoinBuyEnabled: isBitcoinBuyEnabled,
isMoonPayEnabled: isMoonPayEnabled);
isMoonPayEnabled: true);
if (_isSetupFinished) {
return;

View file

@ -253,7 +253,7 @@ abstract class SettingsStoreBase with Store {
(secrets.wyreApiKey?.isNotEmpty ?? false) &&
(secrets.wyreAccountId?.isNotEmpty ?? false);
var isMoonPayEnabled = false;
/*var isMoonPayEnabled = false;
try {
final locale = await Devicelocale.currentLocale;
final deviceCountryCode = locale.split('_').last;
@ -261,12 +261,12 @@ abstract class SettingsStoreBase with Store {
} catch (e) {
isMoonPayEnabled = false;
print(e.toString());
}
}*/
final settings = await SettingsStoreBase.load(
nodeSource: nodeSource,
isBitcoinBuyEnabled: isBitcoinBuyEnabled,
isMoonPayEnabled: isMoonPayEnabled,
isMoonPayEnabled: true,
initialBalanceDisplayMode: initialBalanceDisplayMode,
initialFiatCurrency: initialFiatCurrency,
initialMoneroTransactionPriority: initialMoneroTransactionPriority,