1
0

qt channels: expose long channel id (in ctx menu and details dlg)

Also add separators to context menu to more visible separate
close/delete actions from rest.
This commit is contained in:
SomberNight
2020-03-26 01:20:41 +01:00
parent 1448bfe937
commit 7488cc91cd
4 changed files with 13 additions and 5 deletions

View File

@@ -203,7 +203,7 @@ class LNWorker(Logger):
if last_tried + PEER_RETRY_INTERVAL < now:
await self._add_peer(peer.host, peer.port, peer.pubkey)
async def _add_peer(self, host, port, node_id):
async def _add_peer(self, host, port, node_id) -> Peer:
if node_id in self.peers:
return self.peers[node_id]
port = int(port)