diff --git a/cmd/XDC/misccmd.go b/cmd/XDC/misccmd.go index aa9b1ee568..ef822a0176 100644 --- a/cmd/XDC/misccmd.go +++ b/cmd/XDC/misccmd.go @@ -80,7 +80,7 @@ The output of this command is supposed to be machine-readable. func makecache(ctx *cli.Context) error { args := ctx.Args() if len(args) != 2 { - utils.Fatalf(`Usage: geth makecache `) + utils.Fatalf(`Usage: XDC makecache `) } block, err := strconv.ParseUint(args[0], 0, 64) if err != nil { @@ -95,7 +95,7 @@ func makecache(ctx *cli.Context) error { func makedag(ctx *cli.Context) error { args := ctx.Args() if len(args) != 2 { - utils.Fatalf(`Usage: geth makedag `) + utils.Fatalf(`Usage: XDC makedag `) } block, err := strconv.ParseUint(args[0], 0, 64) if err != nil { @@ -123,17 +123,17 @@ func version(ctx *cli.Context) error { } func license(_ *cli.Context) error { - fmt.Println(`Geth is free software: you can redistribute it and/or modify + fmt.Println(`XDC is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -Geth is distributed in the hope that it will be useful, +XDC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with geth. If not, see .`) +along with XDC. If not, see .`) return nil }