tfollow-up prev commit - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit a8c14e65ad5af4f77d8fece13173723f343477af DIR parent 1529b07aa45de47baaa3c69cf04bccf9d63b2801 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 5 May 2020 09:57:01 +0200 follow-up prev commit Diffstat: M electrum/lnpeer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/lnpeer.py b/electrum/lnpeer.py t@@ -1212,7 +1212,7 @@ class Peer(Logger): except BaseException as e: self.logger.info(f"failed to forward htlc: error sending message. {e}") data = outgoing_chan_upd_len + outgoing_chan_upd - return OnionRoutingFailureMessage(code=OnionFailureCode.TEMPORARY_CHANNEL_FAILURE, data=data) + return None, None, OnionRoutingFailureMessage(code=OnionFailureCode.TEMPORARY_CHANNEL_FAILURE, data=data) return next_chan_scid, next_htlc.htlc_id, None def maybe_fulfill_htlc(self, *, chan: Channel, htlc: UpdateAddHtlc,