diff --git a/cmd/bootnode/main.go b/cmd/bootnode/main.go index 4239fd231a..830713adbe 100644 --- a/cmd/bootnode/main.go +++ b/cmd/bootnode/main.go @@ -194,6 +194,14 @@ func main() { rpcConfigs.HTTPPort = *httpPort rpcConfigs.WSPort = *wsPort + // TODO: enable boot services + /* + if err := currentBootNode.StartServices(); err != nil { + fmt.Fprint(os.Stderr, err.Error()) + os.Exit(-1) + } + */ + if err := currentBootNode.StartRPC(); err != nil { utils.Logger().Error(). Err(err).