From 638bdc23f2830bcc14fe2a204ce88b4ed297d08e Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Mon, 28 Dec 2015 22:32:57 +0900 Subject: [PATCH] Fix hardware test for watching only --- plugins/trezor/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py index a0cebc33b..02f4817ec 100644 --- a/plugins/trezor/plugin.py +++ b/plugins/trezor/plugin.py @@ -36,7 +36,7 @@ class TrezorCompatibleWallet(BIP44_Wallet): return False def is_watching_only(self): - return self.checked_device and not self.proper_device + return not self.proper_device def can_change_password(self): return False