ThomasV 3 years ago
parent
commit
cbeea6e42a
  1. 3
      electrum/lnpeer.py

3
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,)

Loading…
Cancel
Save