1
0

fix typo (follow-up previous commit)

This commit is contained in:
ThomasV
2023-09-14 16:04:37 +02:00
parent d03c77837f
commit 1e96bbc1e8

View File

@@ -342,7 +342,7 @@ class HistoryModel(CustomModel, Logger):
balance = 0
for node in self._root._children:
balance += node._data['value'].value
node._data['balance'] = Satoshis(balance
node._data['balance'] = Satoshis(balance)
new_length = self._root.childCount()
self.beginInsertRows(QModelIndex(), 0, new_length-1)