1
0

fix: add request_force_close method

This commit is contained in:
ThomasV
2021-03-16 17:27:37 +01:00
parent eec97ddfbb
commit bcfcc20363
3 changed files with 14 additions and 2 deletions

View File

@@ -119,7 +119,7 @@ class ChannelsList(MyTreeView):
return
def task():
if self.is_force_close:
coro = self.lnworker.request_remote_force_close(channel_id)
coro = self.lnworker.request_force_close(channel_id)
else:
coro = self.lnworker.close_channel(channel_id)
return self.network.run_from_another_thread(coro)