mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-19 05:45:21 +01:00
Merge pull request #8584 from yyforyongyu/fix-unit-race
chainntnfs: fix race in `TestInterfaces`
This commit is contained in:
commit
d3e5b2f799
@ -1893,7 +1893,6 @@ func TestInterfaces(t *testing.T, targetBackEnd string) {
|
||||
// play around with.
|
||||
miner := unittest.NewMiner(t, unittest.NetParams, nil, true, 25)
|
||||
|
||||
rpcConfig := miner.RPCConfig()
|
||||
p2pAddr := miner.P2PAddress()
|
||||
|
||||
log.Printf("Running %v ChainNotifier interface tests",
|
||||
@ -1953,10 +1952,10 @@ func TestInterfaces(t *testing.T, targetBackEnd string) {
|
||||
}
|
||||
|
||||
case "btcd":
|
||||
configCopy := rpcConfig
|
||||
rpcConfig := miner.RPCConfig()
|
||||
newNotifier = func() (chainntnfs.TestChainNotifier, error) {
|
||||
return btcdnotify.New(
|
||||
&configCopy, unittest.NetParams,
|
||||
&rpcConfig, unittest.NetParams,
|
||||
hintCache, hintCache, blockCache,
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user