Browse Source
add minor comment for RouteEdge as clarification
regtest_lnd
SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
0 deletions
-
lib/lnrouter.py
|
|
@ -142,6 +142,7 @@ class RouteEdge: |
|
|
|
|
|
|
|
def __init__(self, node_id: bytes, short_channel_id: bytes, |
|
|
|
channel_policy: ChannelInfoDirectedPolicy): |
|
|
|
# "if you travel through short_channel_id, you will reach node_id" |
|
|
|
self.node_id = node_id |
|
|
|
self.short_channel_id = short_channel_id |
|
|
|
self.channel_policy = channel_policy |
|
|
|