lnwallet: update DeleteState method to latest DB API change

This commit is contained in:
Olaoluwa Osuntokun 2017-05-04 15:36:05 -07:00
parent 023de3e075
commit 77ae9f560e
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -2550,8 +2550,8 @@ func (lc *LightningChannel) CompleteCooperativeClose(remoteSig []byte) (*wire.Ms
// DeleteState deletes all state concerning the channel from the underlying
// database, only leaving a small summary describing metadata of the
// channel's lifetime.
func (lc *LightningChannel) DeleteState() error {
return lc.channelState.CloseChannel()
func (lc *LightningChannel) DeleteState(c *channeldb.ChannelCloseSummary) error {
return lc.channelState.CloseChannel(c)
}
// StateSnapshot returns a snapshot of the current fully committed state within