mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
qt ConfirmTxDialog: fix exc for "max" invoice when "not enough funds"
"not enough funds" is possible even for "max" invoice due to fees fixes #6136
This commit is contained in:
parent
0ee73378c9
commit
b9bb78a1db
1 changed files with 14 additions and 2 deletions
|
@ -197,10 +197,22 @@ class ConfirmTxDialog(TxEditor, WindowModalDialog):
|
|||
self.pw.setEnabled(True)
|
||||
self.send_button.setEnabled(True)
|
||||
|
||||
def _update_amount_label(self):
|
||||
tx = self.tx
|
||||
if self.output_value == '!':
|
||||
if tx:
|
||||
amount = tx.output_value()
|
||||
amount_str = self.main_window.format_amount_and_units(amount)
|
||||
else:
|
||||
amount_str = "max"
|
||||
else:
|
||||
amount = self.output_value
|
||||
amount_str = self.main_window.format_amount_and_units(amount)
|
||||
self.amount_label.setText(amount_str)
|
||||
|
||||
def update(self):
|
||||
tx = self.tx
|
||||
amount = tx.output_value() if self.output_value == '!' else self.output_value
|
||||
self.amount_label.setText(self.main_window.format_amount_and_units(amount))
|
||||
self._update_amount_label()
|
||||
|
||||
if self.not_enough_funds:
|
||||
text = _("Not enough funds")
|
||||
|
|
Loading…
Add table
Reference in a new issue