mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-18 19:41:21 +02:00
contractcourt: export ResolveContract, update to stop channel arb
In this commit, we export the `ResolveContract` method as it's useful as a way to manually remove active contracts from the chain and channel arbitrator. Along the way, we also update the method to also attempt to stop the channel arb if it exists. This allows an external party to remove all state with a single call. Before this commit, it was assumed that this method was only called by the channel arb itself, when it was already on the way to exiting after all contracts were fully resolved. We also add a set of unit tests to exercise the intended behavior as this method is now public.
This commit is contained in:
@@ -296,7 +296,7 @@ func newActiveChannelArbitrator(channel *channeldb.OpenChannel,
|
||||
}
|
||||
|
||||
arbCfg.MarkChannelResolved = func() error {
|
||||
return c.resolveContract(chanPoint, chanLog)
|
||||
return c.ResolveContract(chanPoint)
|
||||
}
|
||||
|
||||
// Finally, we'll need to construct a series of htlc Sets based on all
|
||||
@@ -321,11 +321,10 @@ func newActiveChannelArbitrator(channel *channeldb.OpenChannel,
|
||||
), nil
|
||||
}
|
||||
|
||||
// resolveContract marks a contract as fully resolved within the database.
|
||||
// ResolveContract marks a contract as fully resolved within the database.
|
||||
// This is only to be done once all contracts which were live on the channel
|
||||
// before hitting the chain have been resolved.
|
||||
func (c *ChainArbitrator) resolveContract(chanPoint wire.OutPoint,
|
||||
arbLog ArbitratorLog) error {
|
||||
func (c *ChainArbitrator) ResolveContract(chanPoint wire.OutPoint) error {
|
||||
|
||||
log.Infof("Marking ChannelPoint(%v) fully resolved", chanPoint)
|
||||
|
||||
@@ -338,27 +337,44 @@ func (c *ChainArbitrator) resolveContract(chanPoint wire.OutPoint,
|
||||
return err
|
||||
}
|
||||
|
||||
// Now that the channel has been marked as fully closed, we'll stop
|
||||
// both the channel arbitrator and chain watcher for this channel if
|
||||
// they're still active.
|
||||
var arbLog ArbitratorLog
|
||||
c.Lock()
|
||||
chainArb := c.activeChannels[chanPoint]
|
||||
delete(c.activeChannels, chanPoint)
|
||||
|
||||
chainWatcher := c.activeWatchers[chanPoint]
|
||||
delete(c.activeWatchers, chanPoint)
|
||||
c.Unlock()
|
||||
|
||||
if chainArb != nil {
|
||||
arbLog = chainArb.log
|
||||
|
||||
if err := chainArb.Stop(); err != nil {
|
||||
log.Warnf("unable to stop ChannelArbitrator(%v): %v",
|
||||
chanPoint, err)
|
||||
}
|
||||
}
|
||||
if chainWatcher != nil {
|
||||
if err := chainWatcher.Stop(); err != nil {
|
||||
log.Warnf("unable to stop ChainWatcher(%v): %v",
|
||||
chanPoint, err)
|
||||
}
|
||||
}
|
||||
|
||||
// Once this has been marked as resolved, we'll wipe the log that the
|
||||
// channel arbitrator was using to store its persistent state. We do
|
||||
// this after marking the channel resolved, as otherwise, the
|
||||
// arbitrator would be re-created, and think it was starting from the
|
||||
// default state.
|
||||
if arbLog != nil {
|
||||
// Once this has been marked as resolved, we'll wipe the log
|
||||
// that the channel arbitrator was using to store its
|
||||
// persistent state. We do this after marking the channel
|
||||
// resolved, as otherwise, the arbitrator would be re-created,
|
||||
// and think it was starting from the default state.
|
||||
if err := arbLog.WipeHistory(); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
c.Lock()
|
||||
delete(c.activeChannels, chanPoint)
|
||||
|
||||
chainWatcher, ok := c.activeWatchers[chanPoint]
|
||||
if ok {
|
||||
chainWatcher.Stop()
|
||||
}
|
||||
delete(c.activeWatchers, chanPoint)
|
||||
c.Unlock()
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
@@ -491,7 +507,7 @@ func (c *ChainArbitrator) Start() error {
|
||||
return err
|
||||
}
|
||||
arbCfg.MarkChannelResolved = func() error {
|
||||
return c.resolveContract(chanPoint, chanLog)
|
||||
return c.ResolveContract(chanPoint)
|
||||
}
|
||||
|
||||
// We can also leave off the set of HTLC's here as since the
|
||||
|
Reference in New Issue
Block a user