From 1614fe0fa6478dd5bacfd4c4a4499c018869a96c Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Sun, 25 Mar 2018 16:14:27 -0700 Subject: [PATCH] htlcswitch: trivial whitespace Missing space results in `unable to get channel links: unable to locate channel link bydestination hop id` log messages --- htlcswitch/switch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htlcswitch/switch.go b/htlcswitch/switch.go index f1c8efc5..b794d19b 100644 --- a/htlcswitch/switch.go +++ b/htlcswitch/switch.go @@ -1930,7 +1930,7 @@ query: func (s *Switch) getLinks(destination [33]byte) ([]ChannelLink, error) { links, ok := s.interfaceIndex[destination] if !ok { - return nil, errors.Errorf("unable to locate channel link by"+ + return nil, errors.Errorf("unable to locate channel link by "+ "destination hop id %x", destination) }