mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
cmd/stateth: fix linter error
This commit is contained in:
parent
8f6b003ff7
commit
9e55d310ed
1 changed files with 1 additions and 4 deletions
|
|
@ -115,10 +115,7 @@ func main() {
|
||||||
fmt.Println("waiting for SIGINT or SIGTERM (CTRL^C) to stop service and remove containers...")
|
fmt.Println("waiting for SIGINT or SIGTERM (CTRL^C) to stop service and remove containers...")
|
||||||
<-done
|
<-done
|
||||||
|
|
||||||
if err := cleanupContainers(c); err != nil {
|
return cleanupContainers(c)
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
app.Run(os.Args)
|
app.Run(os.Args)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue