mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
channel_details: minor fix
This commit is contained in:
parent
3c8dea9b28
commit
dbcd5fe59d
1 changed files with 2 additions and 2 deletions
|
@ -114,8 +114,8 @@ class ChannelDetailsDialog(QtWidgets.QDialog):
|
|||
self.update_sent_received()
|
||||
|
||||
def update_sent_received(self):
|
||||
self.sent_label.setText(str(htlcsum(self.hm.settled_htlcs_by(LOCAL))))
|
||||
self.received_label.setText(str(htlcsum(self.hm.settled_htlcs_by(REMOTE))))
|
||||
self.sent_label.setText(str(htlcsum(self.chan.hm.settled_htlcs_by(LOCAL))))
|
||||
self.received_label.setText(str(htlcsum(self.chan.hm.settled_htlcs_by(REMOTE))))
|
||||
|
||||
@QtCore.pyqtSlot(str)
|
||||
def show_tx(self, link_text: str):
|
||||
|
|
Loading…
Add table
Reference in a new issue