good morning!!!!

Skip to content
Snippets Groups Projects
Commit 73d1ebe2 authored by Felix Lange's avatar Felix Lange
Browse files

cmd/utils: add NewApp

parent b4fa94c4
No related branches found
No related tags found
No related merge requests found
......@@ -45,12 +45,10 @@ const (
var (
clilogger = logger.NewLogger("CLI")
app = cli.NewApp()
app = utils.NewApp(Version, "the go-ethereum command line interface")
)
func init() {
app.Version = Version
app.Usage = "the go-ethereum command-line client"
app.Action = run
app.HideVersion = true // we have a command to print the version
app.Commands = []cli.Command{
......@@ -107,8 +105,6 @@ runtime will execute the file and exit.
Usage: `import a blockchain file`,
},
}
app.Author = ""
app.Email = ""
app.Flags = []cli.Flag{
utils.BootnodesFlag,
utils.DataDirFlag,
......
......@@ -19,6 +19,17 @@ import (
"github.com/ethereum/go-ethereum/p2p/nat"
)
// NewApp creates an app with sane defaults.
func NewApp(version, usage string) *cli.App {
app := cli.NewApp()
app.Name = path.Base(os.Args[0])
app.Author = ""
app.Email = ""
app.Version = version
app.Usage = usage
return app
}
// These are all the command line flags we support.
// If you add to this list, please remember to include the
// flag in the appropriate command definition.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment