diff --git a/lib/di.dart b/lib/di.dart index 58523c474..b5bb7bfd3 100644 --- a/lib/di.dart +++ b/lib/di.dart @@ -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; diff --git a/lib/store/settings_store.dart b/lib/store/settings_store.dart index be71b9f2c..207a731c9 100644 --- a/lib/store/settings_store.dart +++ b/lib/store/settings_store.dart @@ -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,