mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
routing/chainview: if column wrapping on comments in neutrino.go
This commit is contained in:
parent
0ec22cc897
commit
5f915280bc
1 changed files with 5 additions and 6 deletions
|
@ -313,20 +313,19 @@ func (c *CfFilteredChainView) FilterBlock(blockHash *chainhash.Hash) (*FilteredB
|
|||
// NOTE: This is part of the FilteredChainView interface.
|
||||
func (c *CfFilteredChainView) UpdateFilter(ops []wire.OutPoint,
|
||||
updateHeight uint32) error {
|
||||
|
||||
log.Debugf("Updating chain filter with new UTXO's: %v", ops)
|
||||
|
||||
// First, we'll update the current chain view, by
|
||||
// adding any new UTXO's, ignoring duplicates in the
|
||||
// process.
|
||||
// First, we'll update the current chain view, by adding any new
|
||||
// UTXO's, ignoring duplicates in the process.
|
||||
c.filterMtx.Lock()
|
||||
for _, op := range ops {
|
||||
c.chainFilter[op] = struct{}{}
|
||||
}
|
||||
c.filterMtx.Unlock()
|
||||
|
||||
// With our internal chain view update, we'll craft a
|
||||
// new update to the chainView which includes our new
|
||||
// UTXO's, and current update height.
|
||||
// With our internal chain view update, we'll craft a new update to the
|
||||
// chainView which includes our new UTXO's, and current update height.
|
||||
rescanUpdate := []neutrino.UpdateOption{
|
||||
neutrino.AddOutPoints(ops...),
|
||||
neutrino.Rewind(updateHeight),
|
||||
|
|
Loading…
Add table
Reference in a new issue