Remove Flutter Secure Storage from Linux

This commit is contained in:
OmarHatem 2023-10-23 17:13:16 +03:00
parent ff1efbd15c
commit abb18bb9fb
2 changed files with 1 additions and 3 deletions

View file

@ -266,7 +266,6 @@ Future<void> setup({
required Box<Order> ordersSource, required Box<Order> ordersSource,
required Box<UnspentCoinsInfo> unspentCoinsInfoSource, required Box<UnspentCoinsInfo> unspentCoinsInfoSource,
required Box<AnonpayInvoiceInfo> anonpayInvoiceInfoSource, required Box<AnonpayInvoiceInfo> anonpayInvoiceInfoSource,
required FlutterSecureStorage secureStorage,
}) async { }) async {
_walletInfoSource = walletInfoSource; _walletInfoSource = walletInfoSource;
_nodeSource = nodeSource; _nodeSource = nodeSource;

View file

@ -204,8 +204,7 @@ Future<void> initialSetup(
transactionDescriptionBox: transactionDescriptions, transactionDescriptionBox: transactionDescriptions,
ordersSource: ordersSource, ordersSource: ordersSource,
anonpayInvoiceInfoSource: anonpayInvoiceInfo, anonpayInvoiceInfoSource: anonpayInvoiceInfo,
unspentCoinsInfoSource: unspentCoinsInfoSource, unspentCoinsInfoSource: unspentCoinsInfoSource);
secureStorage: secureStorage);
await bootstrap(navigatorKey); await bootstrap(navigatorKey);
monero?.onStartup(); monero?.onStartup();
} }