mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Merge pull request #5026 from JeremyRand/utxolist-headers
Refactor UTXOList headers into class attribute
This commit is contained in:
commit
54eb89ccaf
1 changed files with 2 additions and 1 deletions
|
@ -30,6 +30,7 @@ from electrum.i18n import _
|
||||||
from .util import *
|
from .util import *
|
||||||
|
|
||||||
class UTXOList(MyTreeView):
|
class UTXOList(MyTreeView):
|
||||||
|
headers = [ _('Address'), _('Label'), _('Amount'), _('Height'), _('Output point')]
|
||||||
filter_columns = [0, 1] # Address, Label
|
filter_columns = [0, 1] # Address, Label
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
|
@ -44,7 +45,7 @@ class UTXOList(MyTreeView):
|
||||||
utxos = self.wallet.get_utxos()
|
utxos = self.wallet.get_utxos()
|
||||||
self.utxo_dict = {}
|
self.utxo_dict = {}
|
||||||
self.model().clear()
|
self.model().clear()
|
||||||
self.update_headers([ _('Address'), _('Label'), _('Amount'), _('Height'), _('Output point')])
|
self.update_headers(self.__class__.headers)
|
||||||
for idx, x in enumerate(utxos):
|
for idx, x in enumerate(utxos):
|
||||||
address = x.get('address')
|
address = x.get('address')
|
||||||
height = x.get('height')
|
height = x.get('height')
|
||||||
|
|
Loading…
Add table
Reference in a new issue