follow-up pevious commit
This commit is contained in:
@@ -45,7 +45,7 @@ from functools import partial
|
|||||||
from collections import namedtuple, defaultdict
|
from collections import namedtuple, defaultdict
|
||||||
|
|
||||||
from i18n import _
|
from i18n import _
|
||||||
from util import NotEnoughFunds, PrintError, profiler
|
from util import NotEnoughFunds, PrintError, UserCancelled, profiler
|
||||||
|
|
||||||
from bitcoin import *
|
from bitcoin import *
|
||||||
from version import *
|
from version import *
|
||||||
@@ -1019,7 +1019,7 @@ class Abstract_Wallet(PrintError):
|
|||||||
for k in self.get_keystores():
|
for k in self.get_keystores():
|
||||||
try:
|
try:
|
||||||
k.sign_transaction(tx, password)
|
k.sign_transaction(tx, password)
|
||||||
except:
|
except UserCancelled:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
def get_unused_addresses(self):
|
def get_unused_addresses(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user