channeldb+routing: fix format

This commit is contained in:
yyforyongyu 2022-06-08 21:44:21 +08:00
parent b8c80dceef
commit 2fd4c1e318
No known key found for this signature in database
GPG key ID: 9BCD95C4FF296868
2 changed files with 4 additions and 3 deletions

View file

@ -43,7 +43,8 @@ var (
// ErrPaymentTerminal is returned if we attempt to alter a payment that
// already has reached a terminal condition.
ErrPaymentTerminal = errors.New("payment has reached terminal condition")
ErrPaymentTerminal = errors.New("payment has reached terminal " +
"condition")
// ErrAttemptAlreadySettled is returned if we try to alter an already
// settled HTLC attempt.
@ -77,7 +78,8 @@ var (
// ErrMPPTotalAmountMismatch is returned if we try to register an MPP
// shard where the total amount doesn't match existing shards.
ErrMPPTotalAmountMismatch = errors.New("mp payment total amount mismatch")
ErrMPPTotalAmountMismatch = errors.New("mp payment total amount " +
"mismatch")
// errNoAttemptInfo is returned when no attempt info is stored yet.
errNoAttemptInfo = errors.New("unable to find attempt info for " +

View file

@ -337,7 +337,6 @@ lifecycle:
// Now that the shard was successfully sent, launch a go
// routine that will handle its result when its back.
shardHandler.collectResultAsync(attempt)
}
}