mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 06:21:40 +01:00
routing/chainview: Fix data race in block disconnected callback.
This commit is contained in:
parent
3db8703e13
commit
d8a2ed27b8
1 changed files with 6 additions and 4 deletions
|
@ -178,11 +178,13 @@ func (c *CfFilteredChainView) onFilteredBlockConnected(height int32,
|
|||
func (c *CfFilteredChainView) onFilteredBlockDisconnected(height int32,
|
||||
header *wire.BlockHeader) {
|
||||
|
||||
filteredBlock := &FilteredBlock{
|
||||
Hash: header.BlockHash(),
|
||||
Height: uint32(height),
|
||||
}
|
||||
|
||||
go func() {
|
||||
c.staleBlocks <- &FilteredBlock{
|
||||
Hash: header.BlockHash(),
|
||||
Height: uint32(height),
|
||||
}
|
||||
c.staleBlocks <- filteredBlock
|
||||
}()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue