ttrigger_force_close: set my_current_per_commitment_point to a valid point - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit aacddf008c8812b77f2cfeb5cb1d618f6e8fbc8e DIR parent 4344ca47b3af998fa1e260f66711b8eda62bab67 HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 19 Jun 2020 12:01:18 +0200 ttrigger_force_close: set my_current_per_commitment_point to a valid point We could as well derive the point from our channel_seed and ctn=0, but that seems unnecessary. Related: #6241 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@@ -771,7 +771,7 @@ class Peer(Logger): async def trigger_force_close(self, channel_id): await self.initialized - latest_point = 0 + latest_point = secret_to_pubkey(42) # we need a valid point (BOLT2) self.send_message( "channel_reestablish", channel_id=channel_id,