URI: 
       tminor fix - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit dac686b11d1c2cfc4cd130899cfd9f80656fda28
   DIR parent fda6fb652110fb26b22e15bf21d54dd4b153bab7
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Fri, 22 Mar 2019 10:09:16 +0100
       
       minor fix
       
       Diffstat:
         M electrum/lnpeer.py                  |       5 ++---
       
       1 file changed, 2 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/electrum/lnpeer.py b/electrum/lnpeer.py
       t@@ -540,14 +540,13 @@ class Peer(PrintError):
                    raise Exception('Unknown channel_reestablish')
                self.channel_reestablished[chan_id].set_result(payload)
        
       -    def try_to_get_remote_to_force_close_with_their_latest(chan_id):
       +    def try_to_get_remote_to_force_close_with_their_latest(self, chan_id):
                self.print_error("trying to get remote to force close", bh2u(chan_id))
                self.send_message(
                    "channel_reestablish",
                    channel_id=chan_id,
                    next_local_commitment_number=0,
       -            next_remote_revocation_number=0
       -        )
       +            next_remote_revocation_number=0)
        
            @log_exceptions
            async def reestablish_channel(self, chan: Channel):