Skip to content

Commit

Permalink
fix wallet password
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Nov 26, 2024
1 parent df99707 commit f3441d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/wallet_loading_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class WalletLoadingService {
for (var walletInfo in walletInfoSource.values) {
try {
final walletService = walletServiceFactory.call(walletInfo.type);
final walletPassword = password ?? await keyService.getWalletPassword(walletName: name);
final walletPassword = await keyService.getWalletPassword(walletName: name);
final wallet = await walletService.openWallet(walletInfo.name, walletPassword);

if (walletInfo.type == WalletType.monero) {
Expand Down

0 comments on commit f3441d6

Please sign in to comment.