Trezor: fix passphrase splash dialog message

This commit is contained in:
tobtoht 2021-07-08 13:21:09 +02:00
parent 7975c311b5
commit a6946b1665
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -376,6 +376,9 @@ void WindowManager::onDeviceButtonRequest(quint64 code) {
case 8: // Trezor case 8: // Trezor
message = "Action required on device: Export watch-only credentials to open the wallet."; message = "Action required on device: Export watch-only credentials to open the wallet.";
break; break;
case 19: // Trezor
message = "Action required on device: Enter passphrase to open the wallet.";
break;
default: default:
message = "Action required on device: Export the view key to open the wallet."; message = "Action required on device: Export the view key to open the wallet.";
} }