Merge pull request #8550 from kornpow/kornpow/rescan-info-log

routerrpc: Add detailed info logging during a rescan
This commit is contained in:
Oliver Gugger 2024-03-20 01:46:18 -06:00 committed by GitHub
commit 0c6cc8d0ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -854,10 +854,14 @@ func (r *ChannelRouter) syncGraphWithChain() error {
// Using the next height, request a manual block pruning from
// the chainview for the particular block hash.
log.Infof("Filtering block for closed channels, at height: %v",
int64(nextHeight))
nextHash, err := r.cfg.Chain.GetBlockHash(int64(nextHeight))
if err != nil {
return err
}
log.Tracef("Running block filter on block with hash: %v",
nextHash)
filterBlock, err := r.cfg.ChainView.FilterBlock(nextHash)
if err != nil {
return err