lnd_test: mine reorged out funding tx

This commit is contained in:
Johan T. Halseth 2018-10-29 05:52:09 +01:00
parent 3bb9b398e5
commit 1208c66a89
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -1561,7 +1561,16 @@ func testOpenChannelAfterReorg(net *lntest.NetworkHarness, t *harnessTest) {
numEdges)
}
ctxt, _ = context.WithTimeout(ctxb, timeout)
// Cleanup by mining the funding tx again, then closing the channel.
_, err = waitForTxInMempool(net.Miner.Node, minerMempoolTimeout)
if err != nil {
t.Fatalf("failed to find funding tx in mempool: %v", err)
}
block = mineBlocks(t, net, 1)[0]
assertTxInBlock(t, block, fundingTxID)
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
closeChannelAndAssert(ctxt, t, net, net.Alice, chanPoint, false)
}