URI: 
       tfollow-up 54ef6db762b5ea120a59af0a2470eac999c55d93: set channel state to OPENING if funding tx was broadcast later (e.g. cold storage) - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 947211fe4ecde0488063b3f54dc5e46424b098b5
   DIR parent 36629f095791fdbf592c601243f03c96dd15de3b
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sun, 23 Feb 2020 20:43:23 +0100
       
       follow-up 54ef6db762b5ea120a59af0a2470eac999c55d93: set channel state to OPENING if funding tx was broadcast later (e.g. cold storage)
       
       Diffstat:
         M electrum/lnworker.py                |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/electrum/lnworker.py b/electrum/lnworker.py
       t@@ -666,6 +666,9 @@ class LNWallet(LNWorker):
                    await self.force_close_channel(chan.channel_id)
                    return
        
       +        if chan.get_state() == channel_states.PREOPENING:
       +            chan.set_state(channel_states.OPENING)
       +
                if chan.get_state() == channel_states.OPENING:
                    if chan.short_channel_id is None:
                        self.save_short_chan_id(chan)