chainntnfs: patch debug logs and fix StartHeight

Make sure we patch the `StartHeight` for btcd notifier.
This commit is contained in:
yyforyongyu
2025-06-09 08:31:18 +08:00
committed by Olaoluwa Osuntokun
parent 270981eef0
commit a806323035
2 changed files with 14 additions and 4 deletions

View File

@@ -833,8 +833,12 @@ func (b *BitcoindNotifier) RegisterSpendNtfn(outpoint *wire.OutPoint,
return nil, err
}
if uint32(blockHeight) > ntfn.HistoricalDispatch.StartHeight {
ntfn.HistoricalDispatch.StartHeight = uint32(blockHeight)
spentHeight := uint32(blockHeight)
chainntnfs.Log.Debugf("Outpoint(%v) has spent at height %v",
outpoint, spentHeight)
if spentHeight > ntfn.HistoricalDispatch.StartHeight {
ntfn.HistoricalDispatch.StartHeight = spentHeight
}
}