routing/chainview: if column wrapping on comments in neutrino.go

This commit is contained in:
Olaoluwa Osuntokun 2017-11-06 15:55:14 -08:00
parent 0ec22cc897
commit 5f915280bc
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

View File

@ -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),