diff --git a/cmd/XDC/accountcmd.go b/cmd/XDC/accountcmd.go index 38bb3dce2e..f0a2ae747a 100644 --- a/cmd/XDC/accountcmd.go +++ b/cmd/XDC/accountcmd.go @@ -32,7 +32,7 @@ import ( var ( walletCommand = cli.Command{ Name: "wallet", - Usage: "Manage Ethereum presale wallets", + Usage: "Manage XDCchain presale wallets", ArgsUsage: "", Category: "ACCOUNT COMMANDS", Description: ` @@ -45,7 +45,7 @@ passwordfile as argument containing the wallet password in plaintext.`, { Name: "import", - Usage: "Import Ethereum presale wallet", + Usage: "Import XDCchain presale wallet", ArgsUsage: "", Action: utils.MigrateFlags(importWallet), Category: "ACCOUNT COMMANDS", diff --git a/cmd/XDC/chaincmd.go b/cmd/XDC/chaincmd.go index 0cc5c33a24..fc3be707f0 100644 --- a/cmd/XDC/chaincmd.go +++ b/cmd/XDC/chaincmd.go @@ -55,6 +55,7 @@ var ( The init command initializes a new genesis block and definition for the network. This is a destructive action and changes the network in which you will be participating. + It expects the genesis file as argument.`, } importCommand = cli.Command{ @@ -74,6 +75,7 @@ It expects the genesis file as argument.`, Description: ` The import command imports blocks from an RLP-encoded form. The form can be one file with several RLP-encoded blocks, or several files can be used. + If only one file is used, import error will result in failure. If several files are used, processing will proceed even if an individual RLP-file import failure occurs.`, }