From 6d8cae11dd41c1a15c8ec10729fe079c21d1b43d Mon Sep 17 00:00:00 2001 From: SomberNight Date: Mon, 18 Jun 2018 19:18:39 +0200 Subject: [PATCH] add minor comment for RouteEdge as clarification --- lib/lnrouter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lnrouter.py b/lib/lnrouter.py index cdeb43a3c..9a47eddc2 100644 --- a/lib/lnrouter.py +++ b/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