From: ThomasV Date: Mon, 16 Jun 2014 16:18:02 +0000 (+0200) Subject: catch invalid password exceptions in sign_raw_transaction too X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=26328d0458c9900fc9ddf8d66071fef803d37f38 catch invalid password exceptions in sign_raw_transaction too --- diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e74072e..ee0ab4f 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1815,6 +1815,7 @@ class ElectrumWindow(QMainWindow): def show_qrcode(self, data, title = _("QR code")): if not data: return + print_error("qrcode:", data) d = QRDialog(data, self, title) d.exec_() @@ -2082,7 +2083,10 @@ class ElectrumWindow(QMainWindow): @protected def sign_raw_transaction(self, tx, input_info, password): - self.wallet.signrawtransaction(tx, input_info, [], password) + try: + self.wallet.signrawtransaction(tx, input_info, [], password) + except Exception as e: + QMessageBox.warning(self, _("Error"), str(e)) def do_process_from_text(self): text = text_dialog(self, _('Input raw transaction'), _("Transaction:"), _("Load transaction"))