revert to using os.Interrupt

This commit is contained in:
i-norden 2023-04-09 14:26:21 -05:00
parent 2bb0b1aad6
commit 8bcb2c312f

View File

@ -22,7 +22,6 @@ import (
"os/signal" "os/signal"
"runtime" "runtime"
"sync" "sync"
"syscall"
"github.com/ethereum/go-ethereum/rpc" "github.com/ethereum/go-ethereum/rpc"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -114,7 +113,7 @@ func serve() {
// clean shutdown // clean shutdown
shutdown := make(chan os.Signal) shutdown := make(chan os.Signal)
signal.Notify(shutdown, syscall.SIGINT) signal.Notify(shutdown, os.Interrupt)
<-shutdown <-shutdown
logWithCommand.Info("Received interrupt signal, shutting down") logWithCommand.Info("Received interrupt signal, shutting down")
statediffService.Stop() statediffService.Stop()