qt send tab: rm unused variable and add explanation
This commit is contained in:
@@ -254,7 +254,8 @@ class SendTab(QWidget, MessageBoxMixin, Logger):
|
|||||||
output_value = '!' if is_max else sum(output_values)
|
output_value = '!' if is_max else sum(output_values)
|
||||||
conf_dlg = ConfirmTxDialog(window=self.window, make_tx=make_tx, output_value=output_value)
|
conf_dlg = ConfirmTxDialog(window=self.window, make_tx=make_tx, output_value=output_value)
|
||||||
if conf_dlg.not_enough_funds:
|
if conf_dlg.not_enough_funds:
|
||||||
confirmed_only = self.config.get('confirmed_only', False)
|
# 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 conf_dlg.can_pay_assuming_zero_fees(confirmed_only=False):
|
if not conf_dlg.can_pay_assuming_zero_fees(confirmed_only=False):
|
||||||
text = self.get_text_not_enough_funds_mentioning_frozen()
|
text = self.get_text_not_enough_funds_mentioning_frozen()
|
||||||
self.show_message(text)
|
self.show_message(text)
|
||||||
|
|||||||
Reference in New Issue
Block a user