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.
|
// NOTE: This is part of the FilteredChainView interface.
|
||||||
func (c *CfFilteredChainView) UpdateFilter(ops []wire.OutPoint,
|
func (c *CfFilteredChainView) UpdateFilter(ops []wire.OutPoint,
|
||||||
updateHeight uint32) error {
|
updateHeight uint32) error {
|
||||||
|
|
||||||
log.Debugf("Updating chain filter with new UTXO's: %v", ops)
|
log.Debugf("Updating chain filter with new UTXO's: %v", ops)
|
||||||
|
|
||||||
// First, we'll update the current chain view, by
|
// First, we'll update the current chain view, by adding any new
|
||||||
// adding any new UTXO's, ignoring duplicates in the
|
// UTXO's, ignoring duplicates in the process.
|
||||||
// process.
|
|
||||||
c.filterMtx.Lock()
|
c.filterMtx.Lock()
|
||||||
for _, op := range ops {
|
for _, op := range ops {
|
||||||
c.chainFilter[op] = struct{}{}
|
c.chainFilter[op] = struct{}{}
|
||||||
}
|
}
|
||||||
c.filterMtx.Unlock()
|
c.filterMtx.Unlock()
|
||||||
|
|
||||||
// With our internal chain view update, we'll craft a
|
// With our internal chain view update, we'll craft a new update to the
|
||||||
// new update to the chainView which includes our new
|
// chainView which includes our new UTXO's, and current update height.
|
||||||
// UTXO's, and current update height.
|
|
||||||
rescanUpdate := []neutrino.UpdateOption{
|
rescanUpdate := []neutrino.UpdateOption{
|
||||||
neutrino.AddOutPoints(ops...),
|
neutrino.AddOutPoints(ops...),
|
||||||
neutrino.Rewind(updateHeight),
|
neutrino.Rewind(updateHeight),
|
||||||
|
|
Loading…
Add table
Reference in a new issue