Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "run", Short: "Runs the EVM Gateway Node", Run: func(command *cobra.Command, _ []string) { if _, exists := os.LookupEnv("MULTIKEY_MODE"); exists { bootstrap.RunCreateMultiKeyAccount() return } if err := parseConfigFromFlags(); err != nil { log.Err(err).Msg("failed to parse flags") os.Exit(1) } ctx, cancel := context.WithCancel(command.Context()) done := make(chan struct{}) ready := make(chan struct{}) go func() { defer close(done) err := bootstrap.Run(ctx, cfg, ready) if err != nil { log.Err(err).Msg("failed to run bootstrap") cancel() } }() <-ready osSig := make(chan os.Signal, 1) signal.Notify(osSig, syscall.SIGINT, syscall.SIGTERM) select { case <-osSig: log.Info().Msg("OS Signal to shutdown received, shutting down") cancel() case <-done: log.Info().Msg("done, shutting down") cancel() } log.Info().Msg("OS Signal to shutdown received, shutting down") cancel() }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.