commit 7982cadd2236a2f998dca91a3bae30ccd6570370
parent 0d671e67c51cfab25b67d406857d8bcc14cac7c9
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 22 Sep 2016 13:38:59 +0200
follow-up pevious commit
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -45,7 +45,7 @@ from functools import partial
from collections import namedtuple, defaultdict
from i18n import _
-from util import NotEnoughFunds, PrintError, profiler
+from util import NotEnoughFunds, PrintError, UserCancelled, profiler
from bitcoin import *
from version import *
@@ -1019,7 +1019,7 @@ class Abstract_Wallet(PrintError):
for k in self.get_keystores():
try:
k.sign_transaction(tx, password)
- except:
+ except UserCancelled:
continue
def get_unused_addresses(self):