htlcswitch: fix linter issues

This commit is contained in:
Olaoluwa Osuntokun 2017-06-17 01:02:02 +02:00
parent 1be4d67ce4
commit 4b0e331c62
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
3 changed files with 7 additions and 6 deletions

View File

@ -77,7 +77,7 @@ test_race_conditions() {
check_test_ports
test_targets=$(go list ./... | grep -v '/vendor/')
env GORACE="halt_on_error=1" go test -p 1 -v -race $test_targets
env GORACE="halt_on_error=1" go test -v -race $test_targets
}
# lint_check runs static checks.
@ -166,4 +166,4 @@ if [ "$NEED_COVERAGE" == "true" ]; then
test_with_coverage_profile
fi
print "=====+ End +====="
print "=====+ End +====="

View File

@ -944,7 +944,7 @@ func (l *channelLink) processLockedInHtlcs(
log.Errorf("Onion payload of incoming "+
"htlc(%x) has incorrect time-lock: "+
"expected %v, got %v",
l.cfg.FwrdingPolicy.TimeLockDelta,
pd.RHash[:], l.cfg.FwrdingPolicy.TimeLockDelta,
fwdInfo.OutgoingCTLV)
reason := []byte{byte(lnwire.UpstreamTimeout)}
@ -1061,7 +1061,8 @@ func (l *channelLink) processLockedInHtlcs(
log.Errorf("Incoming htlc(%x) has "+
"incorrect time-lock value: expected "+
"%v blocks, got %v blocks",
pd.Timeout-timeDelta, fwdInfo.OutgoingCTLV)
pd.RHash[:], pd.Timeout-timeDelta,
fwdInfo.OutgoingCTLV)
// TODO(andrew.shvv): send proper back error
reason := []byte{byte(lnwire.UpstreamTimeout)}

View File

@ -837,8 +837,8 @@ type getLinksCmd struct {
done chan []ChannelLink
}
// GetLinks fetches all the links connected to a particular node identified by
// the serialized compressed form of its public key.
// GetLinksByInterface fetches all the links connected to a particular node
// identified by the serialized compressed form of its public key.
func (s *Switch) GetLinksByInterface(hop [33]byte) ([]ChannelLink, error) {
command := &getLinksCmd{
peer: hop,