disable exolix [skip ci]
Omar committed
Jul 26, 2026 at 02:20 UTC
6c54a4ee0039a08a9f912cddd050cc8a7d86051e
2 files changed
+8
-1
lib/entities/default_settings_migration.dart
+7
@@ -628,6 +628,13 @@ Future<void> defaultSettingsMigration(
628
oldUri: ['nodes.hashvault.pro:18081'],
629
);
630
break;
631
+ case 69:
632
+ _changeExchangeProviderAvailability(
633
+ sharedPreferences,
634
+ providerName: "Exolix",
635
+ enabled: false,
636
+ );
637
+ break;
638
default:
639
break;
640
}
lib/main.dart
+1
-1
@@ -315,7 +315,7 @@ Future<void> initializeAppConfigs({bool loadWallet = true}) async {
315
payjoinSessionSource: payjoinSessionSource,
316
anonpayInvoiceInfo: anonpayInvoiceInfo,
317
havenSeedStore: havenSeedStore,
318
- initialMigrationVersion: 68,
318
+ initialMigrationVersion: 69,
319
);
320
}
321