diff --git a/cmd/XDC/main.go b/cmd/XDC/main.go index b278dcc44f..f93ee29dd2 100644 --- a/cmd/XDC/main.go +++ b/cmd/XDC/main.go @@ -51,7 +51,7 @@ var ( // Git SHA1 commit hash of the release (set via linker flags) gitCommit = "" // The app that holds all commands and flags. - app = utils.NewApp(gitCommit, "the go-ethereum command line interface") + app = utils.NewApp(gitCommit, "the XDC command line interface") // flags that configure the node nodeFlags = []cli.Flag{ utils.IdentityFlag, @@ -151,7 +151,7 @@ func init() { // Initialize the CLI app and start XDC app.Action = XDC app.HideVersion = true // we have a command to print the version - app.Copyright = "Copyright 2013-2017 The go-ethereum Authors" + app.Copyright = "Copyright (c) 2018 Xinfin " app.Commands = []cli.Command{ // See chaincmd.go: initCommand, diff --git a/cmd/XDC/usage.go b/cmd/XDC/usage.go index 01269650a3..e10af2f3d8 100644 --- a/cmd/XDC/usage.go +++ b/cmd/XDC/usage.go @@ -33,7 +33,7 @@ import ( var AppHelpTemplate = `NAME: {{.App.Name}} - {{.App.Usage}} - Copyright 2013-2017 The go-ethereum Authors + Copyright (c) 2018 Xinfin USAGE: {{.App.HelpName}} [options]{{if .App.Commands}} command [command options]{{end}} {{if .App.ArgsUsage}}{{.App.ArgsUsage}}{{else}}[arguments...]{{end}}