mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
Merge pull request #5808 from Crypt-iQ/shutdown_clean_flakefix_0929
htlcswitch: fix flake in TestShutdownIfChannelClean
This commit is contained in:
commit
34cb9357ee
2 changed files with 7 additions and 1 deletions
|
@ -297,6 +297,8 @@ you.
|
|||
|
||||
* [Order of the start/stop on subsystems are changed to promote better safety](https://github.com/lightningnetwork/lnd/pull/1783).
|
||||
|
||||
* [Fixed flake that occurred when testing the new optimistic link shutdown.](https://github.com/lightningnetwork/lnd/pull/5808)
|
||||
|
||||
## Database
|
||||
|
||||
* [Ensure single writer for legacy
|
||||
|
|
|
@ -6604,9 +6604,13 @@ func TestShutdownIfChannelClean(t *testing.T) {
|
|||
ctx.sendRevAndAckBobToAlice()
|
||||
shutdownAssert(ErrLinkFailedShutdown)
|
||||
|
||||
// There is currently no controllable breakpoint between Alice
|
||||
// receiving the CommitSig and her sending out the RevokeAndAck. As
|
||||
// soon as the RevokeAndAck is generated, the channel becomes clean.
|
||||
// This can happen right after the CommitSig is received, so there is
|
||||
// no shutdown assertion here.
|
||||
// <---sig-----
|
||||
ctx.sendCommitSigBobToAlice(0)
|
||||
shutdownAssert(ErrLinkFailedShutdown)
|
||||
|
||||
// ----rev---->
|
||||
ctx.receiveRevAndAckAliceToBob()
|
||||
|
|
Loading…
Add table
Reference in a new issue