t(trivial) fix variable name - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 31a18f83f1190bb586ca8c142f43af9e48932020 DIR parent 7866caf2a71abc8c81f59dffca868c0cc589bc6c HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 27 Aug 2019 13:35:03 +0200 (trivial) fix variable name Diffstat: M electrum/gui/kivy/uix/dialogs/ligh… | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/kivy/uix/dialogs/lightning_channels.py b/electrum/gui/kivy/uix/dialogs/lightning_channels.py t@@ -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'))