mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
fix bug #1365
This commit is contained in:
parent
aef7e4365e
commit
31739d01d7
1 changed files with 2 additions and 1 deletions
|
@ -160,7 +160,8 @@ class Plugin(BasePlugin):
|
||||||
return
|
return
|
||||||
wallet = TrezorWallet(storage)
|
wallet = TrezorWallet(storage)
|
||||||
self.wallet = wallet
|
self.wallet = wallet
|
||||||
passphrase = self.handler.get_passphrase(_("Please enter your Trezor passphrase.") + '\n' + _("Press OK if you do not use one."))
|
handler = TrezorQtHandler(wizard)
|
||||||
|
passphrase = handler.get_passphrase(_("Please enter your Trezor passphrase.") + '\n' + _("Press OK if you do not use one."))
|
||||||
if passphrase is None:
|
if passphrase is None:
|
||||||
return
|
return
|
||||||
password = wizard.password_dialog()
|
password = wizard.password_dialog()
|
||||||
|
|
Loading…
Add table
Reference in a new issue