mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
fix
This commit is contained in:
parent
94e5bd7ef0
commit
77c85a913e
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ abstract class DashboardViewModelBase with Store {
|
|||
List<String> 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;
|
||||
|
|
Loading…
Reference in a new issue