diff --git a/electrum/lnpeer.py b/electrum/lnpeer.py index 3dfb86d71..42cb6bdc9 100644 --- a/electrum/lnpeer.py +++ b/electrum/lnpeer.py @@ -209,7 +209,8 @@ class Peer(Logger): if message_type not in ('error', 'warning') and 'channel_id' in payload: chan = self.get_channel_by_id(payload['channel_id']) if chan is None: - raise Exception('Got unknown '+ message_type) + self.logger.info(f"Received {message_type} for unknown channel {payload['channel_id'].hex()}") + return args = (chan, payload) else: args = (payload,)