tfollow-up prev commit - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 281d51c00216d6eca9e30ecd8080e4a525aacdcc DIR parent 0e8dba897eeabf9a8b19194233ad2a9a8246a2cc HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 29 Jan 2019 19:08:13 +0100 follow-up prev commit Diffstat: M electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/commands.py b/electrum/commands.py t@@ -835,7 +835,7 @@ class Commands: @command('wn') def closechannel(self, channel_point, force=False): chan_id = bytes(reversed(bfh(channel_point))) - coro = self.lnworker.force_close_channel(chan_id) if force else self.lnworker.force_close_channel(chan_id) + coro = self.lnworker.force_close_channel(chan_id) if force else self.lnworker.close_channel(chan_id) return self.network.run_from_another_thread(coro) def eval_bool(x: str) -> bool: