tMerge pull request #3046 from SomberNight/fix_trezor_unresolved_var_keystore - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit d55468d1a6f1bee8b42676acb81f19fb2a97128e DIR parent 566b1689b93e63a4aa389d5a708f7b10fce3c411 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 16 Oct 2017 07:13:23 +0200 Merge pull request #3046 from SomberNight/fix_trezor_unresolved_var_keystore fix: unresolved var in trezor/plugin.py Diffstat: M plugins/trezor/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py t@@ -253,7 +253,7 @@ class TrezorCompatiblePlugin(HW_PluginBase): def show_address(self, wallet, address): client = self.get_client(wallet.keystore) 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 change, index = wallet.get_address_index(address) derivation = wallet.keystore.derivation