From 77c85a913e6058dd8dfdad5fc70ec9085e74401f Mon Sep 17 00:00:00 2001 From: fosse Date: Tue, 19 Dec 2023 14:32:07 -0500 Subject: [PATCH] fix --- lib/view_model/dashboard/dashboard_view_model.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view_model/dashboard/dashboard_view_model.dart b/lib/view_model/dashboard/dashboard_view_model.dart index 19b5ad544..9aab76d5d 100644 --- a/lib/view_model/dashboard/dashboard_view_model.dart +++ b/lib/view_model/dashboard/dashboard_view_model.dart @@ -457,7 +457,7 @@ abstract class DashboardViewModelBase with Store { List affectedWallets = []; for (var walletInfo in walletInfoSource.values) { if (walletInfo.type == WalletType.bitcoin) { - final password = await keyService.getWalletPassword(walletName: walletInfo.name); + final password = await keyService.getWalletPasswordV2(walletName: walletInfo.name); final path = await pathForWallet(name: walletInfo.name, type: walletInfo.type); final jsonSource = await read(path: path, password: password); final data = json.decode(jsonSource) as Map;