mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-08 23:01:53 +02:00
Merge pull request #6792 from Crypt-iQ/fullcommitflake
htlcswitch: use ticker.New instead of NewForce for test link
This commit is contained in:
@@ -42,6 +42,9 @@ minimum version needed to build the project.
|
|||||||
|
|
||||||
## Misc
|
## 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).
|
* [Fixed error typo](https://github.com/lightningnetwork/lnd/pull/6659).
|
||||||
|
|
||||||
* [The macaroon key store implementation was refactored to be more generally
|
* [The macaroon key store implementation was refactored to be more generally
|
||||||
@@ -98,6 +101,7 @@ minimum version needed to build the project.
|
|||||||
* Daniel McNally
|
* Daniel McNally
|
||||||
* Elle Mouton
|
* Elle Mouton
|
||||||
* ErikEk
|
* ErikEk
|
||||||
|
* Eugene Siegel
|
||||||
* hieblmi
|
* hieblmi
|
||||||
* Jesse de Wit
|
* Jesse de Wit
|
||||||
* Matt Morehouse
|
* Matt Morehouse
|
||||||
|
@@ -1166,7 +1166,7 @@ func (h *hopNetwork) createChannelLink(server, peer *mockServer,
|
|||||||
BatchSize: 10,
|
BatchSize: 10,
|
||||||
BatchTicker: ticker.NewForce(testBatchTimeout),
|
BatchTicker: ticker.NewForce(testBatchTimeout),
|
||||||
FwdPkgGCTicker: ticker.NewForce(fwdPkgTimeout),
|
FwdPkgGCTicker: ticker.NewForce(fwdPkgTimeout),
|
||||||
PendingCommitTicker: ticker.NewForce(2 * time.Minute),
|
PendingCommitTicker: ticker.New(2 * time.Minute),
|
||||||
MinFeeUpdateTimeout: minFeeUpdateTimeout,
|
MinFeeUpdateTimeout: minFeeUpdateTimeout,
|
||||||
MaxFeeUpdateTimeout: maxFeeUpdateTimeout,
|
MaxFeeUpdateTimeout: maxFeeUpdateTimeout,
|
||||||
OnChannelFailure: func(lnwire.ChannelID, lnwire.ShortChannelID, LinkFailureError) {},
|
OnChannelFailure: func(lnwire.ChannelID, lnwire.ShortChannelID, LinkFailureError) {},
|
||||||
|
Reference in New Issue
Block a user