diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index d737f292..a52d9fc2 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2480,6 +2480,9 @@ class ElectrumWindow(QMainWindow): fee = self.wallet.fee_per_kb(self.config) tx = Transaction.sweep(get_pk(), self.network, get_address(), fee) + if not tx: + self.show_message(_('No inputs found. (Note that inputs need to be confirmed)')) + return self.show_transaction(tx)