mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
itest: fix spawning temp miner
This commit is contained in:
parent
2a9b7ec536
commit
3a45492398
1 changed files with 6 additions and 3 deletions
|
@ -29,14 +29,17 @@ func testOpenChannelAfterReorg(ht *lntest.HarnessTest) {
|
|||
ht.Skipf("skipping reorg test for neutrino backend")
|
||||
}
|
||||
|
||||
// Create a temp miner.
|
||||
tempMiner := ht.SpawnTempMiner()
|
||||
|
||||
miner := ht.Miner()
|
||||
alice := ht.NewNodeWithCoins("Alice", nil)
|
||||
bob := ht.NewNode("Bob", nil)
|
||||
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
|
||||
// open, then broadcast the funding transaction
|
||||
params := lntest.OpenChannelParams{
|
||||
|
|
Loading…
Add table
Reference in a new issue