mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
28 lines
1.2 KiB
Text
28 lines
1.2 KiB
Text
Popup:
|
|
id: ln
|
|
title: _('Lightning Network')
|
|
BoxLayout:
|
|
orientation: 'vertical'
|
|
ScrollView:
|
|
GridLayout:
|
|
id: scrollviewlayout
|
|
cols:1
|
|
size_hint: 1, None
|
|
height: self.minimum_height
|
|
padding: '10dp'
|
|
SettingsItem:
|
|
value: _("{} connections.").format(app.lightning_gossip_num_peers) if app.lightning_gossip_num_peers else _("Not connected")
|
|
title: _("Gossip") + ': ' + self.value
|
|
description: _("Connections with lightning nodes")
|
|
CardSeparator
|
|
SettingsItem:
|
|
title: _("Nodes") + ': ' + str(app.lightning_gossip_num_nodes)
|
|
description: _("Nodes in database.")
|
|
CardSeparator
|
|
SettingsItem:
|
|
title: _("Channels") + ': ' + str(app.lightning_gossip_num_channels)
|
|
description: _("Channels in database.")
|
|
CardSeparator
|
|
SettingsItem:
|
|
title: _("Pending") + ': ' + str(app.lightning_gossip_num_queries)
|
|
description: _("Channel updates to query.")
|