diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index d713e087b..6cc955524 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -763,7 +763,7 @@ class ElectrumWindow(QMainWindow): date = format_time(timestamp) account = self.wallet.get_account_name(self.wallet.get_account_from_address(address)) amount_str = self.format_amount(amount) if amount else "" - paid = amount < self.wallet.get_addr_received(address) + paid = amount <= self.wallet.get_addr_received(address) status = PR_PAID if paid else PR_UNPAID item = QTreeWidgetItem( [ date, account, address, message, amount_str, pr_tooltips[status]]) item.setFont(2, QFont(MONOSPACE_FONT))