URI: 
       tfollow-up prev - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 561ecaa2260e699e7ef62ef8b03f4c0f5317bbca
   DIR parent 4c7095668778c1d3f98a2bf9669a5aa4eeeede87
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Fri, 19 Jun 2020 04:13:41 +0200
       
       follow-up prev
       
       Diffstat:
         M electrum/lnchannel.py               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/electrum/lnchannel.py b/electrum/lnchannel.py
       t@@ -700,14 +700,14 @@ class Channel(AbstractChannel):
        
            def set_frozen_for_sending(self, b: bool) -> None:
                self.storage['frozen_for_sending'] = bool(b)
       -        util.trigger_callback('channel', self)
       +        util.trigger_callback('channel', self.lnworker.wallet, self)
        
            def is_frozen_for_receiving(self) -> bool:
                return self.storage.get('frozen_for_receiving', False)
        
            def set_frozen_for_receiving(self, b: bool) -> None:
                self.storage['frozen_for_receiving'] = bool(b)
       -        util.trigger_callback('channel', self)
       +        util.trigger_callback('channel', self.lnworker.wallet, self)
        
            def _assert_can_add_htlc(self, *, htlc_proposer: HTLCOwner, amount_msat: int,
                                     ignore_min_htlc_value: bool = False) -> None: