Skip to content

Commit

Permalink
htlcswitch: fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Jun 16, 2017
1 parent 1be4d67 commit 4b0e331
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gotest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -166,4 +166,4 @@ if [ "$NEED_COVERAGE" == "true" ]; then
test_with_coverage_profile
fi

print "=====+ End +====="
print "=====+ End +====="
5 changes: 3 additions & 2 deletions htlcswitch/link.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)}
Expand Down Expand Up @@ -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)}
Expand Down
4 changes: 2 additions & 2 deletions htlcswitch/switch.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4b0e331

Please sign in to comment.