diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 4f3d81f5d2..aa11de3f41 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -729,7 +729,7 @@ func setIPC(ctx *cli.Context, cfg *node.Config) { } // makeDatabaseHandles raises out the number of allowed file handles per process -// for Geth and returns half of the allowance to assign to the database. +// for XDC and returns half of the allowance to assign to the database. func makeDatabaseHandles() int { limit, err := fdlimit.Current() if err != nil { @@ -761,7 +761,7 @@ func MakeAddress(ks *keystore.KeyStore, account string) (accounts.Account, error log.Warn("-------------------------------------------------------------------") log.Warn("Referring to accounts by order in the keystore folder is dangerous!") log.Warn("This functionality is deprecated and will be removed in the future!") - log.Warn("Please use explicit addresses! (can search via `geth account list`)") + log.Warn("Please use explicit addresses! (can search via `XDC account list`)") log.Warn("-------------------------------------------------------------------") accs := ks.Accounts() @@ -1276,11 +1276,11 @@ func MakeConsolePreloads(ctx *cli.Context) []string { // This is a temporary function used for migrating old command/flags to the // new format. // -// e.g. geth account new --keystore /tmp/mykeystore --lightkdf +// e.g. XDC account new --keystore /tmp/mykeystore --lightkdf // // is equivalent after calling this method with: // -// geth --keystore /tmp/mykeystore --lightkdf account new +// XDC --keystore /tmp/mykeystore --lightkdf account new // // This allows the use of the existing configuration functionality. // When all flags are migrated this function can be removed and the existing