Browse Source
Refactor UTXOList headers into class attribute
This makes it more straightforward to subclass UTXOList.
3.3.3.1
JeremyRand
6 years ago
No known key found for this signature in database
GPG Key ID: B3F2D165786D6570
1 changed files with
2 additions and
1 deletions
-
electrum/gui/qt/utxo_list.py
|
|
@ -30,6 +30,7 @@ from electrum.i18n import _ |
|
|
|
from .util import * |
|
|
|
|
|
|
|
class UTXOList(MyTreeView): |
|
|
|
headers = [ _('Address'), _('Label'), _('Amount'), _('Height'), _('Output point')] |
|
|
|
filter_columns = [0, 1] # Address, Label |
|
|
|
|
|
|
|
def __init__(self, parent=None): |
|
|
@ -44,7 +45,7 @@ class UTXOList(MyTreeView): |
|
|
|
utxos = self.wallet.get_utxos() |
|
|
|
self.utxo_dict = {} |
|
|
|
self.model().clear() |
|
|
|
self.update_headers([ _('Address'), _('Label'), _('Amount'), _('Height'), _('Output point')]) |
|
|
|
self.update_headers(self.__class__.headers) |
|
|
|
for idx, x in enumerate(utxos): |
|
|
|
address = x.get('address') |
|
|
|
height = x.get('height') |
|
|
|