cmd/utils: fix interrupt handling to actually see subsequent interrupts

This commit is contained in:
Felix Lange 2015-07-06 16:48:34 +02:00
parent 5615fc4714
commit d4c2e9de32
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ func StartEthereum(ethereum *eth.Ethereum) {
defer signal.Stop(sigc)
<-sigc
glog.V(logger.Info).Infoln("Got interrupt, shutting down...")
ethereum.Stop()
go ethereum.Stop()
logger.Flush()
for i := 10; i > 0; i-- {
<-sigc