mirror of
https://github.com/lightninglabs/pool.git
synced 2026-08-20 13:27:51 +02:00
sidecar: insert missing continue during auto sidecar restart
A continue was missing that would cause the loop to panic below as in certain cases the recipient isn't yet present (provider just restarted).
This commit is contained in:
parent
3dee849502
commit
d60b991b6f
1 changed files with 2 additions and 0 deletions
|
|
@ -174,6 +174,8 @@ func (a *SidecarAcceptor) Start(errChan chan error) error {
|
|||
"for sidecar: %w", err)
|
||||
}
|
||||
|
||||
continue
|
||||
|
||||
// If the ticket has no recipient or isn't in the expecting
|
||||
// state, then we can safely skip it.
|
||||
case ticket.State != sidecar.StateExpectingChannel:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue