follow-up pevious commit

This commit is contained in:
ThomasV 2016-09-22 13:38:59 +02:00
parent 0d671e67c5
commit 7982cadd22
1 changed files with 2 additions and 2 deletions

View File

@ -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):