Browse Source

fix typo (follow-up previous commit)

master
ThomasV 2 years ago
parent
commit
1e96bbc1e8
  1. 2
      electrum/gui/qt/history_list.py

2
electrum/gui/qt/history_list.py

@ -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)

Loading…
Cancel
Save