ThomasV
6 years ago
committed by
SomberNight
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
0 deletions
-
electrum/lnpeer.py
|
@ -860,6 +860,7 @@ class Peer(PrintError): |
|
|
if offset: |
|
|
if offset: |
|
|
channel_update = (258).to_bytes(length=2, byteorder="big") + data[offset:] |
|
|
channel_update = (258).to_bytes(length=2, byteorder="big") + data[offset:] |
|
|
message_type, payload = decode_msg(channel_update) |
|
|
message_type, payload = decode_msg(channel_update) |
|
|
|
|
|
payload['raw'] = channel_update |
|
|
try: |
|
|
try: |
|
|
self.print_error("trying to apply channel update on our db", payload) |
|
|
self.print_error("trying to apply channel update on our db", payload) |
|
|
self.channel_db.on_channel_update(payload) |
|
|
self.channel_db.on_channel_update(payload) |
|
|