peer+lnwallet: update API usage to recent channeldb changes
This commit is contained in:
parent
7df1d75267
commit
34959e4648
@ -1011,12 +1011,13 @@ func (lc *LightningChannel) closeObserver(channelCloseNtfn *chainntnfs.SpendEven
|
||||
// immediately delete the state from disk, creating a close
|
||||
// summary for future usage by related sub-systems.
|
||||
// TODO(roasbeef): include HTLC's
|
||||
// * and time-locked balance
|
||||
closeSummary := &channeldb.ChannelCloseSummary{
|
||||
ChanPoint: *lc.channelState.ChanID,
|
||||
ClosingTXID: *commitSpend.SpenderTxHash,
|
||||
RemotePub: lc.channelState.IdentityPub,
|
||||
Capacity: lc.Capacity,
|
||||
OurBalance: lc.channelState.OurBalance,
|
||||
SettledBalance: lc.channelState.OurBalance,
|
||||
CloseType: channeldb.ForceClose,
|
||||
IsPending: true,
|
||||
}
|
||||
|
4
peer.go
4
peer.go
@ -904,7 +904,7 @@ func (p *peer) handleLocalClose(req *closeLinkReq) {
|
||||
ClosingTXID: *closingTxid,
|
||||
RemotePub: &chanInfo.RemoteIdentity,
|
||||
Capacity: chanInfo.Capacity,
|
||||
OurBalance: chanInfo.LocalBalance,
|
||||
SettledBalance: chanInfo.LocalBalance,
|
||||
CloseType: channeldb.CooperativeClose,
|
||||
IsPending: true,
|
||||
}
|
||||
@ -1029,7 +1029,7 @@ func (p *peer) handleRemoteClose(req *lnwire.CloseRequest) {
|
||||
ClosingTXID: closeTxid,
|
||||
RemotePub: &chanInfo.RemoteIdentity,
|
||||
Capacity: chanInfo.Capacity,
|
||||
OurBalance: chanInfo.LocalBalance,
|
||||
SettledBalance: chanInfo.LocalBalance,
|
||||
CloseType: channeldb.CooperativeClose,
|
||||
IsPending: true,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user