chainntnfs: fixed off-by-one in attemptHistoricalDispatch

This commit is contained in:
bryanvu 2016-12-28 18:13:17 -08:00 committed by Olaoluwa Osuntokun
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,
}