Browse Source

ChannelDB: trivial bugfix for get_channels_for_node

dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight 6 years ago
committed by ThomasV
parent
commit
9a0ba7fa79
  1. 4
      electrum/lnrouter.py

4
electrum/lnrouter.py

@ -593,9 +593,9 @@ class ChannelDB(SqlDB):
def get_channel_info(self, channel_id: bytes):
return self._channels.get(channel_id)
def get_channels_for_node(self, node_id):
def get_channels_for_node(self, node_id) -> Set[bytes]:
"""Returns the set of channels that have node_id as one of the endpoints."""
return self._channels_for_node.get(node_id)
return self._channels_for_node.get(node_id) or set()

Loading…
Cancel
Save