multi: fix typos in comments

This commit is contained in:
Dimitris Tsapakidis
2018-04-18 05:03:27 +03:00
committed by Olaoluwa Osuntokun
parent 663c396235
commit 4009f7f874
30 changed files with 70 additions and 70 deletions

View File

@@ -734,7 +734,7 @@ func TestCircuitMapCommitCircuits(t *testing.T) {
// Finally, restart the circuit map, which will cause the added circuit
// to be loaded from disk. Since the keystone was never set, subsequent
// attempts to commit the circuit should cause the circuit map to
// indicate that that the HTLC should be failed back.
// indicate that the HTLC should be failed back.
cfg, circuitMap = restartCircuitMap(t, cfg)
actions, err = circuitMap.CommitCircuits(circuit)
@@ -1055,7 +1055,7 @@ func TestCircuitMapTrimOpenCircuits(t *testing.T) {
firstTrimIndex,
)
// Restart the circuit map, verify that that the trim is reflected on
// Restart the circuit map, verify that the trim is reflected on
// startup.
cfg, circuitMap = restartCircuitMap(t, cfg)

View File

@@ -1142,7 +1142,7 @@ func (l *channelLink) handleUpstreamMsg(msg lnwire.Message) {
// TODO(roasbeef): pipeline to switch
// As we've learned of a new preimage for the first time, we'll
// add it to to our preimage cache. By doing this, we ensure
// add it to our preimage cache. By doing this, we ensure
// any contested contracts watched by any on-chain arbitrators
// can now sweep this HTLC on-chain.
go func() {
@@ -1236,7 +1236,7 @@ func (l *channelLink) handleUpstreamMsg(msg lnwire.Message) {
return
}
// As we've just just accepted a new state, we'll now
// As we've just accepted a new state, we'll now
// immediately send the remote peer a revocation for our prior
// state.
nextRevocation, currentHtlcs, err := l.channel.RevokeCurrentCommitment()
@@ -1964,7 +1964,7 @@ func (l *channelLink) processRemoteAdds(fwdPkg *channeldb.FwdPkg,
//
// NOTE: Though our recovery and forwarding logic is
// predominately batched, settling invoices happens
// iteratively. We may reject one of of two payments
// iteratively. We may reject one of two payments
// for the same rhash at first, but then restart and
// reject both after seeing that the invoice has been
// settled. Without any record of which one settles
@@ -2105,7 +2105,7 @@ func (l *channelLink) processRemoteAdds(fwdPkg *channeldb.FwdPkg,
// There are additional channels left within this route. So
// we'll verify that our forwarding constraints have been
// properly met by by this incoming HTLC.
// properly met by this incoming HTLC.
default:
switch fwdPkg.State {
case channeldb.FwdStateProcessed:

View File

@@ -1803,7 +1803,7 @@ func (s *Switch) UpdateShortChanID(chanID lnwire.ChannelID,
s.indexMtx.Lock()
// First, we'll extract the current link as is from the link link
// First, we'll extract the current link as is from the link
// index. If the link isn't even in the index, then we'll return an
// error.
link, ok := s.linkIndex[chanID]