mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
(trivial) fix variable name
This commit is contained in:
parent
7866caf2a7
commit
31a18f83f1
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class ChannelDetailsPopup(Popup):
|
|||
if not b:
|
||||
return
|
||||
loop = self.app.wallet.network.asyncio_loop
|
||||
coro = asyncio.run_coroutine_threadsafe(self.app.wallet.lnworker.close_channel(self._chan.channel_id), loop)
|
||||
coro = asyncio.run_coroutine_threadsafe(self.app.wallet.lnworker.close_channel(self.chan.channel_id), loop)
|
||||
try:
|
||||
coro.result(5)
|
||||
self.app.show_info(_('Channel closed'))
|
||||
|
|
Loading…
Add table
Reference in a new issue