Browse Source

Merge pull request #9086 from longxiangqiao/master

chore: fix some comments
master
accumulator 2 years ago committed by GitHub
parent
commit
d1aa65d0b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      electrum/gui/qt/history_list.py

2
electrum/gui/qt/history_list.py

@ -307,7 +307,7 @@ class HistoryModel(CustomModel, Logger):
# add child to parent # add child to parent
node.addChild(child_node) node.addChild(child_node)
# compute balance once all children have beed added # compute balance once all children have been added
balance = 0 balance = 0
for node in self._root._children: for node in self._root._children:
balance += node._data['value'].value balance += node._data['value'].value

Loading…
Cancel
Save