mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
node: remove unused err var (#32398)
This commit is contained in:
parent
75fc56f27d
commit
a4d3fb9805
1 changed files with 3 additions and 4 deletions
|
|
@ -24,10 +24,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ErrDatadirUsed = errors.New("datadir already used by another process")
|
ErrDatadirUsed = errors.New("datadir already used by another process")
|
||||||
ErrNodeStopped = errors.New("node not started")
|
ErrNodeStopped = errors.New("node not started")
|
||||||
ErrNodeRunning = errors.New("node already running")
|
ErrNodeRunning = errors.New("node already running")
|
||||||
ErrServiceUnknown = errors.New("unknown service")
|
|
||||||
|
|
||||||
datadirInUseErrnos = map[uint]bool{11: true, 32: true, 35: true}
|
datadirInUseErrnos = map[uint]bool{11: true, 32: true, 35: true}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue