chainntfs: use an int32 for NegativeConf

This commit is contained in:
Olaoluwa Osuntokun 2016-02-26 16:30:27 -08:00
parent e92fc5f495
commit 19e1b64f2c

@ -33,15 +33,14 @@ type ConfirmationEvent struct {
// to sync, to request another confirmation event ntfn, then re-open // to sync, to request another confirmation event ntfn, then re-open
// channel after confs. // channel after confs.
NegativeConf chan uint32 // MUST be buffered. NegativeConf chan int32 // MUST be buffered.
} }
// SpendDetail ... // SpendDetail ...
type SpendDetail struct { type SpendDetail struct {
SpentOutPoint *wire.OutPoint SpentOutPoint *wire.OutPoint
SpendingTx *wire.MsgTx
SpenderTxHash *wire.ShaHash SpenderTxHash *wire.ShaHash
SpendingTx *wire.MsgTx
SpenderInputIndex uint32 SpenderInputIndex uint32
} }