URI: 
       t(trivial) fix type annotation - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit fa5302bcfb695490c56ace8208fdebc7b1f04953
   DIR parent bce74717a644a6d838c3dd6e064b069875be2b9a
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Fri, 16 Aug 2019 22:46:48 +0200
       
       (trivial) fix type annotation
       
       Diffstat:
         M electrum/channel_db.py              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/channel_db.py b/electrum/channel_db.py
       t@@ -468,7 +468,7 @@ class ChannelDB(SqlDB):
                self.update_counts()
        
            def get_routing_policy_for_channel(self, start_node_id: bytes,
       -                                       short_channel_id: bytes) -> Optional[bytes]:
       +                                       short_channel_id: bytes) -> Optional[Policy]:
                if not start_node_id or not short_channel_id: return None
                channel_info = self.get_channel_info(short_channel_id)
                if channel_info is not None: