mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
chainntfs: use an int32 for NegativeConf
This commit is contained in:
parent
e92fc5f495
commit
19e1b64f2c
1 changed files with 3 additions and 4 deletions
|
@ -33,15 +33,14 @@ type ConfirmationEvent struct {
|
|||
// to sync, to request another confirmation event ntfn, then re-open
|
||||
// channel after confs.
|
||||
|
||||
NegativeConf chan uint32 // MUST be buffered.
|
||||
NegativeConf chan int32 // MUST be buffered.
|
||||
}
|
||||
|
||||
// SpendDetail ...
|
||||
type SpendDetail struct {
|
||||
SpentOutPoint *wire.OutPoint
|
||||
|
||||
SpendingTx *wire.MsgTx
|
||||
SpenderTxHash *wire.ShaHash
|
||||
SpendingTx *wire.MsgTx
|
||||
SpenderInputIndex uint32
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue