You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coins tab: Speedup for wallets with very many utxos
The essense of this commit is to move the call to
self._update_utxo_count_display() to *before* we rebuild the QTreeWidget
for the Coins tab. The reason this is faster is that updating this header
item count is faster if done with an empty QTreeWidget than if done with
a populated one.
There are no negative effects from this change other than the speedup.
Also in this commit:
- Fix copyright and year for utxo_list.py
- Fix imports for utxo_list.py
- Added some debug-mode only @profiler printing for UTXOList.on_update
method.
0 commit comments