mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-29 07:00:55 +02:00
chainntnfs: patch debug logs and fix StartHeight
Make sure we patch the `StartHeight` for btcd notifier.
This commit is contained in:
committed by
Olaoluwa Osuntokun
parent
270981eef0
commit
a806323035
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user