itest: fix spawning temp miner

This commit is contained in:
yyforyongyu 2024-10-29 16:05:06 +08:00
parent 2a9b7ec536
commit 3a45492398
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868

View File

@ -29,14 +29,17 @@ func testOpenChannelAfterReorg(ht *lntest.HarnessTest) {
ht.Skipf("skipping reorg test for neutrino backend") ht.Skipf("skipping reorg test for neutrino backend")
} }
// Create a temp miner.
tempMiner := ht.SpawnTempMiner()
miner := ht.Miner() miner := ht.Miner()
alice := ht.NewNodeWithCoins("Alice", nil) alice := ht.NewNodeWithCoins("Alice", nil)
bob := ht.NewNode("Bob", nil) bob := ht.NewNode("Bob", nil)
ht.EnsureConnected(alice, bob) ht.EnsureConnected(alice, bob)
// Create a temp miner after the creation of Alice.
//
// NOTE: this is needed since NewNodeWithCoins will mine a block and
// the temp miner needs to sync up.
tempMiner := ht.SpawnTempMiner()
// Create a new channel that requires 1 confs before it's considered // Create a new channel that requires 1 confs before it's considered
// open, then broadcast the funding transaction // open, then broadcast the funding transaction
params := lntest.OpenChannelParams{ params := lntest.OpenChannelParams{