diff --git a/electrum/commands.py b/electrum/commands.py index e49f17b67..df8c581e6 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -839,7 +839,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: