mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
chainntnfs: fix race in TestInterfaces
This commit is contained in:
parent
1422df27b2
commit
bf799719b5
@ -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