electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 638bdc23f2830bcc14fe2a204ce88b4ed297d08e
parent 7811b974e981c28fca3d5fa70282a11c0fa73a1e
Author: Neil Booth <kyuupichan@gmail.com>
Date:   Mon, 28 Dec 2015 22:32:57 +0900

Fix hardware test for watching only

Diffstat:
Mplugins/trezor/plugin.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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