mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-12 09:37:47 +00:00
WalletManager: fix error when cache is missing
This commit is contained in:
parent
cdab3ffdc4
commit
4b747bf163
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ void WindowManager::onWalletOpened(Wallet *wallet) {
|
|||
// Don't show incorrect password when we try with empty password for the first time
|
||||
bool showIncorrectPassword = m_openWalletTriedOnce;
|
||||
m_openWalletTriedOnce = true;
|
||||
this->onWalletOpenPasswordRequired(showIncorrectPassword, wallet->cachePath());
|
||||
this->onWalletOpenPasswordRequired(showIncorrectPassword, wallet->keysPath());
|
||||
}
|
||||
else if (errMsg == QString("basic_string::_M_replace_aux") || errMsg == QString("std::bad_alloc")) {
|
||||
qCritical() << errMsg;
|
||||
|
|
Loading…
Reference in a new issue