URI: 
       tlnbase: self.channel_reestablished is not a queue - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 5ca6fbaea7c43de5adc7401464c63d692bbeeba9
   DIR parent 15b0720f5e4130286c5639e1f8c7720fb89a86fc
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 24 Oct 2018 11:33:56 +0200
       
       lnbase: self.channel_reestablished is not a queue
       
       Diffstat:
         M electrum/lnbase.py                  |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/lnbase.py b/electrum/lnbase.py
       t@@ -262,9 +262,10 @@ class Peer(PrintError):
                    asyncio.ensure_future(execution_result)
        
            def on_error(self, payload):
       +        # todo: self.channel_reestablished is not a queue
                self.print_error("error", payload["data"].decode("ascii"))
                chan_id = payload.get("channel_id")
       -        for d in [ self.channel_accepted, self.channel_reestablished, self.funding_signed,
       +        for d in [ self.channel_accepted, self.funding_signed,
                           self.funding_created, self.revoke_and_ack, self.commitment_signed,
                           self.announcement_signatures, self.closing_signed ]:
                    if chan_id in d: