From 7982cadd2236a2f998dca91a3bae30ccd6570370 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 22 Sep 2016 13:38:59 +0200 Subject: [PATCH] follow-up pevious commit --- lib/wallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 61fa391f..c16f1c0c 100644 --- 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):