mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
don't show the sequence field
This commit is contained in:
parent
070a7e8b6e
commit
1f24f6f9be
1 changed files with 3 additions and 3 deletions
|
@ -1780,10 +1780,10 @@ class ElectrumWindow(QMainWindow):
|
|||
|
||||
tree_widget = MyTreeWidget(self)
|
||||
tree_widget.setColumnCount(2)
|
||||
tree_widget.setHeaderLabels( [_('Sequence'), _('Address'), _('Previous output')] )
|
||||
tree_widget.setHeaderLabels( [ _('Address'), _('Previous output')] )
|
||||
|
||||
for input_line in tx.d["inputs"]:
|
||||
item = QTreeWidgetItem( [str(input_line["sequence"]), str(input_line["address"]), str(input_line["prevout_hash"])] )
|
||||
for input_line in tx.inputs:
|
||||
item = QTreeWidgetItem( [ str(input_line["address"]), str(input_line["prevout_hash"])] )
|
||||
tree_widget.addTopLevelItem(item)
|
||||
|
||||
tree_widget.setMaximumHeight(100)
|
||||
|
|
Loading…
Add table
Reference in a new issue