Browse Source
Merge pull request #5026 from JeremyRand/utxolist-headers
Refactor UTXOList headers into class attribute
3.3.3.1
ThomasV
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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') |
|
|
|