From 74897dc328dbdeb59acd2b35d0288cdc03ec0f4c Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 31 May 2017 16:48:07 -0700 Subject: [PATCH] htlcswitch: fix linter error --- htlcswitch/switch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htlcswitch/switch.go b/htlcswitch/switch.go index 1c48cc26..61f3ca32 100644 --- a/htlcswitch/switch.go +++ b/htlcswitch/switch.go @@ -83,7 +83,7 @@ type Config struct { LocalChannelClose func(pubKey []byte, request *ChanClose) } -// htlcSwitch is a central messaging bus for all incoming/outgoing HTLCs. +// Switch is the central messaging bus for all incoming/outgoing HTLCs. // Connected peers with active channels are treated as named interfaces which // refer to active channels as links. A link is the switch's message // communication point with the goroutine that manages an active channel. New