diff --git a/docs/release-notes/release-notes-0.16.0.md b/docs/release-notes/release-notes-0.16.0.md index 4add94242..f9fda7028 100644 --- a/docs/release-notes/release-notes-0.16.0.md +++ b/docs/release-notes/release-notes-0.16.0.md @@ -42,6 +42,9 @@ minimum version needed to build the project. ## Misc +* [Fixed a flake in the TestChannelLinkCancelFullCommitment unit + test](https://github.com/lightningnetwork/lnd/pull/6792). + * [Fixed error typo](https://github.com/lightningnetwork/lnd/pull/6659). * [The macaroon key store implementation was refactored to be more generally @@ -98,6 +101,7 @@ minimum version needed to build the project. * Daniel McNally * Elle Mouton * ErikEk +* Eugene Siegel * hieblmi * Jesse de Wit * Matt Morehouse diff --git a/htlcswitch/test_utils.go b/htlcswitch/test_utils.go index 7cda5d97a..a4868c12f 100644 --- a/htlcswitch/test_utils.go +++ b/htlcswitch/test_utils.go @@ -1166,7 +1166,7 @@ func (h *hopNetwork) createChannelLink(server, peer *mockServer, BatchSize: 10, BatchTicker: ticker.NewForce(testBatchTimeout), FwdPkgGCTicker: ticker.NewForce(fwdPkgTimeout), - PendingCommitTicker: ticker.NewForce(2 * time.Minute), + PendingCommitTicker: ticker.New(2 * time.Minute), MinFeeUpdateTimeout: minFeeUpdateTimeout, MaxFeeUpdateTimeout: maxFeeUpdateTimeout, OnChannelFailure: func(lnwire.ChannelID, lnwire.ShortChannelID, LinkFailureError) {},