mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-25 17:22:59 +01:00
chainntnfs: fixed off-by-one in attemptHistoricalDispatch
This commit is contained in:
parent
def39799c5
commit
90ed23e6aa
@ -393,7 +393,7 @@ func (b *BtcdNotifier) attemptHistoricalDispatch(msg *confirmationsNotification,
|
||||
|
||||
confDetails := &chainntnfs.TxConfirmation{
|
||||
BlockHash: blockHash,
|
||||
BlockHeight: uint32(currentHeight) - uint32(tx.Confirmations),
|
||||
BlockHeight: uint32(currentHeight) - uint32(tx.Confirmations) + 1,
|
||||
TxIndex: txIndex,
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user