server+lntest: extract ErrServerNotActive error

This commit is contained in:
Wilmer Paulino
2019-10-23 17:35:41 -04:00
parent fd906475dd
commit 955d143c1b
3 changed files with 14 additions and 15 deletions

View File

@ -89,6 +89,11 @@ var (
// given peer.
ErrPeerNotConnected = errors.New("peer is not connected")
// ErrServerNotActive indicates that the server has started but hasn't
// fully finished the startup process.
ErrServerNotActive = errors.New("server is still in the process of " +
"starting")
// ErrServerShuttingDown indicates that the server is in the process of
// gracefully exiting.
ErrServerShuttingDown = errors.New("server is shutting down")