chore: refactor DB closure to check for errors before returning (#4808)
This commit is contained in:
parent
2445cda3e0
commit
fca6cafc44
|
@ -477,12 +477,12 @@ func (n *StatusNode) stop() error {
|
|||
n.downloader = nil
|
||||
|
||||
if n.db != nil {
|
||||
err := n.db.Close()
|
||||
|
||||
n.db = nil
|
||||
|
||||
if err = n.db.Close(); err != nil {
|
||||
n.log.Error("Error closing the leveldb of status node", "error", err)
|
||||
return err
|
||||
}
|
||||
n.db = nil
|
||||
}
|
||||
|
||||
n.rpcFiltersSrvc = nil
|
||||
n.subscriptionsSrvc = nil
|
||||
|
|
Loading…
Reference in New Issue