chainntnfs: fix vet error, don't pass lock by value

This commit is contained in:
Olaoluwa Osuntokun
2017-06-07 17:07:27 -07:00
parent baf769eaf0
commit 54cb8a05cd
2 changed files with 4 additions and 4 deletions

View File

@@ -497,7 +497,7 @@ func (b *BtcdNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.Hash
b.wg.Add(1) b.wg.Add(1)
epochClient.wg.Add(1) epochClient.wg.Add(1)
go func(ntfnChan chan *chainntnfs.BlockEpoch, cancelChan chan struct{}, go func(ntfnChan chan *chainntnfs.BlockEpoch, cancelChan chan struct{},
clientWg sync.WaitGroup) { clientWg *sync.WaitGroup) {
defer clientWg.Done() defer clientWg.Done()
defer b.wg.Done() defer b.wg.Done()
@@ -512,7 +512,7 @@ func (b *BtcdNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.Hash
return return
} }
}(epochClient.epochChan, epochClient.cancelChan, epochClient.wg) }(epochClient.epochChan, epochClient.cancelChan, &epochClient.wg)
} }
} }

View File

@@ -563,7 +563,7 @@ func (n *NeutrinoNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.
n.wg.Add(1) n.wg.Add(1)
epochClient.wg.Add(1) epochClient.wg.Add(1)
go func(ntfnChan chan *chainntnfs.BlockEpoch, cancelChan chan struct{}, go func(ntfnChan chan *chainntnfs.BlockEpoch, cancelChan chan struct{},
clientWg sync.WaitGroup) { clientWg *sync.WaitGroup) {
defer clientWg.Done() defer clientWg.Done()
defer n.wg.Done() defer n.wg.Done()
@@ -577,7 +577,7 @@ func (n *NeutrinoNotifier) notifyBlockEpochs(newHeight int32, newSha *chainhash.
case <-n.quit: case <-n.quit:
return return
} }
}(epochClient.epochChan, epochClient.cancelChan, epochClient.wg) }(epochClient.epochChan, epochClient.cancelChan, &epochClient.wg)
} }
} }