fixed access to tx.error in case tx is None
This commit is contained in:
parent
11fc93dc4a
commit
a597e26541
@ -1079,6 +1079,9 @@ class ElectrumWindow(QMainWindow):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
tx = self.wallet.make_unsigned_transaction(outputs, fee, None, coins = coins)
|
tx = self.wallet.make_unsigned_transaction(outputs, fee, None, coins = coins)
|
||||||
|
if not tx:
|
||||||
|
raise BaseException(_("Insufficient funds"))
|
||||||
|
else:
|
||||||
tx.error = None
|
tx.error = None
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
traceback.print_exc(file=sys.stdout)
|
traceback.print_exc(file=sys.stdout)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user