mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-09 20:49:08 +02:00
Merge pull request #9492 from yyforyongyu/itest-flake-interceptor
itest: fix flake in `testForwardInterceptorRestart`
This commit is contained in:
commit
6bf6603fb8
@ -357,7 +357,7 @@ func testForwardInterceptorRestart(ht *lntest.HarnessTest) {
|
||||
cfgs := [][]string{nil, nil, nil, nil}
|
||||
|
||||
// Open and wait for channels.
|
||||
_, nodes := ht.CreateSimpleNetwork(cfgs, p)
|
||||
chanPoints, nodes := ht.CreateSimpleNetwork(cfgs, p)
|
||||
alice, bob, carol, dave := nodes[0], nodes[1], nodes[2], nodes[3]
|
||||
|
||||
// Connect an interceptor to Bob's node.
|
||||
@ -424,6 +424,13 @@ func testForwardInterceptorRestart(ht *lntest.HarnessTest) {
|
||||
|
||||
require.NoError(ht, restartAlice(), "failed to restart alice")
|
||||
|
||||
// Once restarted, we will wait until the reestabilishment of the links,
|
||||
// Alice=>Bob and Bob=>Carol, finish before calling the interceptors. We
|
||||
// check this by asserting that Carol is now aware of the two channels
|
||||
// being active again.
|
||||
ht.AssertChannelInGraph(carol, chanPoints[0])
|
||||
ht.AssertChannelInGraph(carol, chanPoints[1])
|
||||
|
||||
// We should get another notification about the held HTLC.
|
||||
packet = ht.ReceiveHtlcInterceptor(bobInterceptor)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user