chainntnfs: fix vet error, don't pass lock by value
This commit is contained in:
parent
baf769eaf0
commit
54cb8a05cd
@ -497,7 +497,7 @@ func (b *BtcdNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.Hash
|
||||
b.wg.Add(1)
|
||||
epochClient.wg.Add(1)
|
||||
go func(ntfnChan chan *chainntnfs.BlockEpoch, cancelChan chan struct{},
|
||||
clientWg sync.WaitGroup) {
|
||||
clientWg *sync.WaitGroup) {
|
||||
|
||||
defer clientWg.Done()
|
||||
defer b.wg.Done()
|
||||
@ -512,7 +512,7 @@ func (b *BtcdNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.Hash
|
||||
return
|
||||
}
|
||||
|
||||
}(epochClient.epochChan, epochClient.cancelChan, epochClient.wg)
|
||||
}(epochClient.epochChan, epochClient.cancelChan, &epochClient.wg)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -563,7 +563,7 @@ func (n *NeutrinoNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.
|
||||
n.wg.Add(1)
|
||||
epochClient.wg.Add(1)
|
||||
go func(ntfnChan chan *chainntnfs.BlockEpoch, cancelChan chan struct{},
|
||||
clientWg sync.WaitGroup) {
|
||||
clientWg *sync.WaitGroup) {
|
||||
|
||||
defer clientWg.Done()
|
||||
defer n.wg.Done()
|
||||
@ -577,7 +577,7 @@ func (n *NeutrinoNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.
|
||||
case <-n.quit:
|
||||
return
|
||||
}
|
||||
}(epochClient.epochChan, epochClient.cancelChan, epochClient.wg)
|
||||
}(epochClient.epochChan, epochClient.cancelChan, &epochClient.wg)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user