From 163f59f83f4dae5fdeecd0bf64be7c9eec5403f3 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 11 Mar 2025 15:22:14 +0000 Subject: [PATCH] qt/main_window: fix regression in confirm_tx_dialog follow-up https://github.com/spesmilo/electrum/commit/605b511b43aedd9cae7e6185fcebf266af2463de --- 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 2a56c9d74..47000ae42 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -1417,7 +1417,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): # note: use confirmed_only=False here, regardless of config setting, # as the user needs to get to ConfirmTxDialog to change the config setting if not d.can_pay_assuming_zero_fees(confirmed_only=False): - text = self.send_tab.get_text_not_enough_funds_mentioning_frozen() + text = self.wallet.get_text_not_enough_funds_mentioning_frozen() self.show_message(text) return return d.run(), d.is_preview