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(); }