From 6c055e80ed4db18ba984e4c7b52db12b93821603 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 19 Sep 2019 12:01:23 +0200 Subject: [PATCH] qt: show_info -> show_error --- electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 4cc9d097f..845286440 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -1686,7 +1686,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): elif status == 'progress': print('on_payment_status', key, status, args) elif status == 'failure': - self.show_info(_('Payment failed')) + self.show_error(_('Payment failed')) elif status == 'error': e = args[0] self.show_error(_('Error') + '\n' + str(e))