pair with new statediffing geth version; travis tests will fail til release is up

This commit is contained in:
Ian Norden
2020-05-21 15:34:43 -05:00
parent 5fb1cc0696
commit 0101c4791a
26 changed files with 169 additions and 180 deletions
+4 -1
View File
@@ -72,6 +72,7 @@ func superNode() {
if err != nil {
logWithCommand.Fatal(err)
}
defer superNode.Stop()
var forwardPayloadChan chan shared.ConvertedData
if superNodeConfig.Serve {
logWithCommand.Info("starting up super node servers")
@@ -100,7 +101,9 @@ func superNode() {
shutdown := make(chan os.Signal)
signal.Notify(shutdown, os.Interrupt)
<-shutdown
backFiller.Stop()
if superNodeConfig.BackFill {
backFiller.Stop()
}
superNode.Stop()
wg.Wait()
}