Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,13 @@ ApplicationWindow {
default:
// opening with password but password doesn't match
console.error("Error opening wallet with password: ", wallet.errorString);
passwordDialog.showError(qsTr("Couldn't open wallet: ") + wallet.errorString);
var errorMessage = qsTr("Couldn't open wallet: ") + wallet.errorString;
if (wallet.isLedger()) {
errorMessage += "\n" + qsTr("Make sure your Ledger is connected and unlocked, and the Monero app is open.");
} else if (wallet.isTrezor()) {
errorMessage += "\n" + qsTr("Make sure your Trezor is connected and unlocked.");
}
passwordDialog.showError(errorMessage);
console.log("closing wallet async : " + wallet.address)
closeWallet();
return;
Expand Down
Loading