URI: 
       tfix #1938 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0fd813f2294c650caed0dfdf22559ff81c459737
   DIR parent da65e9e7d5b2d27306e2b1f09b263a0b5e7f343c
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Thu, 29 Sep 2016 11:50:32 +0200
       
       fix #1938
       
       Diffstat:
         M lib/wallet.py                       |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -1018,7 +1018,8 @@ class Abstract_Wallet(PrintError):
                # sign
                for k in self.get_keystores():
                    try:
       -                k.sign_transaction(tx, password)
       +                if k.can_sign(tx):
       +                    k.sign_transaction(tx, password)
                    except UserCancelled:
                        continue