1
0
This commit is contained in:
SomberNight
2018-06-14 22:19:06 +02:00
parent 8f7a4cf876
commit 1b834a7a78
3 changed files with 11 additions and 7 deletions

View File

@@ -3166,7 +3166,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
try:
new_tx = self.wallet.bump_fee(tx, delta)
except BaseException as e:
self.show_error(str(e))
traceback.print_exc(file=sys.stderr)
self.show_error(_('Error bumping fee') + ':\n' + str(e))
return
if is_final:
new_tx.set_rbf(False)