1
0

do not pass channel list to update_rows signal, as it is sent to all windows

This commit is contained in:
ThomasV
2018-06-06 17:42:06 +02:00
parent 6f246b90bf
commit aeb58dbd66
2 changed files with 6 additions and 7 deletions

View File

@@ -176,7 +176,7 @@ class LNWorker(PrintError):
self.on_channels_updated()
def on_channels_updated(self):
self.network.trigger_callback('channels', list(self.channels.values()))
self.network.trigger_callback('channels')
def open_channel(self, node_id, local_amt_sat, push_amt_sat, pw):
coro = self._open_channel_coroutine(node_id, local_amt_sat, push_amt_sat, None if pw == "" else pw)