From 1e96bbc1e87d9b0e3575af38d2ce5984bb3ebb67 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 14 Sep 2023 16:04:37 +0200 Subject: [PATCH] fix typo (follow-up previous commit) --- electrum/gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index a4c133474..198d7e5fd 100644 --- a/electrum/gui/qt/history_list.py +++ b/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)