From f518be434642244cbf2cb0541ffd4be9039f3c6a Mon Sep 17 00:00:00 2001 From: m0mchil Date: Sat, 12 Jul 2014 20:19:04 +0300 Subject: [PATCH] enable plugin for trezor wallet --- plugins/trezor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/trezor.py b/plugins/trezor.py index 8b850e2d..e9da4c2b 100644 --- a/plugins/trezor.py +++ b/plugins/trezor.py @@ -51,7 +51,7 @@ class Plugin(BasePlugin): if not self.is_available(): return False - if not self.wallet: + if not self.wallet or self.wallet.storage.get('wallet_type') == 'trezor': return True return self.wallet.storage.get('use_' + self.name) is True