Skip to content
Snippets Groups Projects
Commit 50b208e3 authored by Vincent Texier's avatar Vincent Texier
Browse files

[enh] display account balance with units

bug in pylupdate5 in PyQT5, see: https://github.com/pyqt/python-qt5/issues/54
parent 0cd86e34
No related branches found
No related tags found
2 merge requests!7810.52.0,!780Issue 807
...@@ -128,7 +128,7 @@ class TxHistoryModel(QObject): ...@@ -128,7 +128,7 @@ class TxHistoryModel(QObject):
amount = self.sources_service.amount(self.connection.pubkey) amount = self.sources_service.amount(self.connection.pubkey)
localized_amount = self.app.current_ref.instance( localized_amount = self.app.current_ref.instance(
amount, self.connection.currency, self.app amount, self.connection.currency, self.app
).localized(False, True) ).localized(True, True)
return localized_amount return localized_amount
except NoPeerAvailable as e: except NoPeerAvailable as e:
logging.debug(str(e)) logging.debug(str(e))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment