From fb4b744142225613c90de57fbd4ac490e6c9bc45 Mon Sep 17 00:00:00 2001 From: f321x Date: Wed, 29 Oct 2025 18:17:06 +0100 Subject: [PATCH] qt: remove outdated help string in SendTab The amount edit box is not turning red anymore if the amount is higher than the wallet balance, so this string can be removed. Alternatively it could be made red again but seems like nobody missed it. --- electrum/gui/qt/send_tab.py | 1 - 1 file changed, 1 deletion(-) diff --git a/electrum/gui/qt/send_tab.py b/electrum/gui/qt/send_tab.py index dc1a05c9b..1eda3c64b 100644 --- a/electrum/gui/qt/send_tab.py +++ b/electrum/gui/qt/send_tab.py @@ -111,7 +111,6 @@ class SendTab(QWidget, MessageBoxMixin, Logger): msg = (_('The amount to be received by the recipient.') + ' ' + _('Fees are paid by the sender.') + '\n\n' - + _('The amount will be displayed in red if you do not have enough funds in your wallet.') + ' ' + _('Note that if you have frozen some of your addresses, the available funds will be lower than your total balance.') + '\n\n' + _('Keyboard shortcut: type "!" to send all your coins.')) amount_label = HelpLabel(_('Amount'), msg)