multi: fix linter issues

This commit is contained in:
sputn1ck 2022-05-20 08:57:06 +02:00
parent f0bf9302cc
commit a1271fee40
No known key found for this signature in database
GPG key ID: 671103D881A5F0E4
18 changed files with 10 additions and 21 deletions

View file

@ -185,7 +185,7 @@ func (h *mockLightningClient) ListTransactions(
}
// GetNodeInfo retrieves info on the node, and if includeChannels is True,
// will return other channels the node may have with other peers
// will return other channels the node may have with other peers.
func (h *mockLightningClient) GetNodeInfo(ctx context.Context,
pubKeyBytes route.Vertex, includeChannels bool) (*lndclient.NodeInfo, error) {
@ -224,7 +224,7 @@ func (h *mockLightningClient) GetNodeInfo(ctx context.Context,
return nodeInfo, nil
}
// GetChanInfo retrieves all the info the node has on the given channel
// GetChanInfo retrieves all the info the node has on the given channel.
func (h *mockLightningClient) GetChanInfo(ctx context.Context,
channelID uint64) (*lndclient.ChannelEdge, error) {