From 64f7cc9b6e791ae35c213f9ab7a032d86195ebd6 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 21 Mar 2019 15:20:18 +0100 Subject: [PATCH] follow-up prev commit --- electrum/lnpeer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/electrum/lnpeer.py b/electrum/lnpeer.py index 9e8a92f16..a4962eb7a 100644 --- a/electrum/lnpeer.py +++ b/electrum/lnpeer.py @@ -860,6 +860,7 @@ class Peer(PrintError): if offset: channel_update = (258).to_bytes(length=2, byteorder="big") + data[offset:] message_type, payload = decode_msg(channel_update) + payload['raw'] = channel_update try: self.print_error("trying to apply channel update on our db", payload) self.channel_db.on_channel_update(payload)