From 9bf45de279aa422b803403769a5eb06331168b62 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 23 Jan 2016 16:23:21 +0900 Subject: [PATCH] Trezor: give me a chance to sign with a PIN entry --- 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 dc2e9e4cb..c1069d533 100644 --- a/plugins/trezor/plugin.py +++ b/plugins/trezor/plugin.py @@ -139,7 +139,7 @@ class TrezorCompatibleWallet(BIP44_Wallet): return msg_sig.signature def sign_transaction(self, tx, password): - if tx.is_complete() or self.is_watching_only(): + if tx.is_complete(): return # previous transactions used as inputs prev_tx = {}