mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
trivial typo[skip ci]
This commit is contained in:
parent
e6277986fd
commit
6146b8d644
@ -61,7 +61,7 @@ func (c *WeightedCombAttachment) Name() string {
|
|||||||
// maps the NodeID to an attachment directive containing a score and a channel
|
// maps the NodeID to an attachment directive containing a score and a channel
|
||||||
// size.
|
// size.
|
||||||
//
|
//
|
||||||
// The scores is determined by quering the set of sub-heuristics, then
|
// The scores is determined by querying the set of sub-heuristics, then
|
||||||
// combining these scores into a final score according to the active
|
// combining these scores into a final score according to the active
|
||||||
// configuration.
|
// configuration.
|
||||||
//
|
//
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
## Misc
|
## Misc
|
||||||
* Warning messages from peers are now recognized and [logged](https://github.com/lightningnetwork/lnd/pull/6546) by lnd.
|
* Warning messages from peers are now recognized and [logged](https://github.com/lightningnetwork/lnd/pull/6546) by lnd.
|
||||||
|
|
||||||
|
* [Fixed error typo](https://github.com/lightningnetwork/lnd/pull/6659).
|
||||||
|
|
||||||
# Contributors (Alphabetical Order)
|
# Contributors (Alphabetical Order)
|
||||||
* Carla Kirk-Cohen
|
* Carla Kirk-Cohen
|
||||||
|
* ErikEk
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ func (f FailResolutionResult) FailureString() string {
|
|||||||
return "invoice already canceled"
|
return "invoice already canceled"
|
||||||
|
|
||||||
case ResultInvoiceAlreadySettled:
|
case ResultInvoiceAlreadySettled:
|
||||||
return "invoice alread settled"
|
return "invoice already settled"
|
||||||
|
|
||||||
case ResultAmountTooLow:
|
case ResultAmountTooLow:
|
||||||
return "amount too low"
|
return "amount too low"
|
||||||
|
@ -366,7 +366,7 @@ func checkSettleResolution(t *testing.T, res HtlcResolution,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// checkFailResolution asserts the resolution is a fail with the correct reason.
|
// checkFailResolution asserts the resolution is a fail with the correct reason.
|
||||||
// If successful, the HtlcFailResolutionis returned in case further checks are
|
// If successful, the HtlcFailResolution is returned in case further checks are
|
||||||
// desired.
|
// desired.
|
||||||
func checkFailResolution(t *testing.T, res HtlcResolution,
|
func checkFailResolution(t *testing.T, res HtlcResolution,
|
||||||
expOutcome FailResolutionResult) *HtlcFailResolution {
|
expOutcome FailResolutionResult) *HtlcFailResolution {
|
||||||
|
Loading…
Reference in New Issue
Block a user