contractcourt/channel_arbittrator: ignore noResolutions error on startup
This commit is contained in:
parent
b031d87daf
commit
ed5db96e05
@ -295,9 +295,24 @@ func (c *ChannelArbitrator) Start() error {
|
||||
startingState := c.state
|
||||
nextState, _, err := c.advanceState(triggerHeight, trigger)
|
||||
if err != nil {
|
||||
switch err {
|
||||
|
||||
// If we detect that we tried to fetch resolutions, but failed,
|
||||
// this channel was marked closed in the database before
|
||||
// resolutions successfully written. In this case there is not
|
||||
// much we can do, so we don't return the error.
|
||||
case errScopeBucketNoExist:
|
||||
fallthrough
|
||||
case errNoResolutions:
|
||||
log.Warnf("ChannelArbitrator(%v): detected closed"+
|
||||
"channel with no contract resolutions written.",
|
||||
c.cfg.ChanPoint)
|
||||
|
||||
default:
|
||||
c.cfg.BlockEpochs.Cancel()
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// If we start and ended at the awaiting full resolution state, then
|
||||
// we'll relaunch our set of unresolved contracts.
|
||||
|
Loading…
Reference in New Issue
Block a user