mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
Merge pull request #3046 from SomberNight/fix_trezor_unresolved_var_keystore
fix: unresolved var in trezor/plugin.py
This commit is contained in:
commit
d55468d1a6
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ class TrezorCompatiblePlugin(HW_PluginBase):
|
||||||
def show_address(self, wallet, address):
|
def show_address(self, wallet, address):
|
||||||
client = self.get_client(wallet.keystore)
|
client = self.get_client(wallet.keystore)
|
||||||
if not client.atleast_version(1, 3):
|
if not client.atleast_version(1, 3):
|
||||||
keystore.handler.show_error(_("Your device firmware is too old"))
|
wallet.keystore.handler.show_error(_("Your device firmware is too old"))
|
||||||
return
|
return
|
||||||
change, index = wallet.get_address_index(address)
|
change, index = wallet.get_address_index(address)
|
||||||
derivation = wallet.keystore.derivation
|
derivation = wallet.keystore.derivation
|
||||||
|
|
Loading…
Add table
Reference in a new issue