1
0

transaction: rename tx.is_final to tx.is_rbf_enabled, and invert it

This commit is contained in:
SomberNight
2024-01-17 02:08:15 +00:00
parent f30d81a98f
commit 248e50eed0
4 changed files with 14 additions and 15 deletions

View File

@@ -838,7 +838,7 @@ class TxDialog(QDialog, MessageBoxMixin):
locktime_final_str = f"LockTime: {self.tx.locktime} ({datetime.datetime.fromtimestamp(self.tx.locktime)})"
self.locktime_final_label.setText(locktime_final_str)
self.rbf_label.setText(_('Replace by fee') + f": {not self.tx.is_final()}")
self.rbf_label.setText(_('Replace by fee') + f": {self.tx.is_rbf_enabled()}")
if tx_mined_status.header_hash:
self.block_height_label.setText(_("At block height: {}")