From abb18bb9fbcdb5f4d1836332597e6164c9d47242 Mon Sep 17 00:00:00 2001 From: OmarHatem Date: Mon, 23 Oct 2023 17:13:16 +0300 Subject: [PATCH] Remove Flutter Secure Storage from Linux --- lib/di.dart | 1 - lib/main.dart | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/di.dart b/lib/di.dart index 200cdc086..66042876d 100644 --- a/lib/di.dart +++ b/lib/di.dart @@ -266,7 +266,6 @@ Future setup({ required Box ordersSource, required Box unspentCoinsInfoSource, required Box anonpayInvoiceInfoSource, - required FlutterSecureStorage secureStorage, }) async { _walletInfoSource = walletInfoSource; _nodeSource = nodeSource; diff --git a/lib/main.dart b/lib/main.dart index 698a03553..a22645ddc 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -204,8 +204,7 @@ Future initialSetup( transactionDescriptionBox: transactionDescriptions, ordersSource: ordersSource, anonpayInvoiceInfoSource: anonpayInvoiceInfo, - unspentCoinsInfoSource: unspentCoinsInfoSource, - secureStorage: secureStorage); + unspentCoinsInfoSource: unspentCoinsInfoSource); await bootstrap(navigatorKey); monero?.onStartup(); }