We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75fc56f commit a4d3fb9Copy full SHA for a4d3fb9
node/errors.go
@@ -24,10 +24,9 @@ import (
24
)
25
26
var (
27
- ErrDatadirUsed = errors.New("datadir already used by another process")
28
- ErrNodeStopped = errors.New("node not started")
29
- ErrNodeRunning = errors.New("node already running")
30
- ErrServiceUnknown = errors.New("unknown service")
+ ErrDatadirUsed = errors.New("datadir already used by another process")
+ ErrNodeStopped = errors.New("node not started")
+ ErrNodeRunning = errors.New("node already running")
31
32
datadirInUseErrnos = map[uint]bool{11: true, 32: true, 35: true}
33
0 commit comments