mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-23 23:24:30 +00:00
Fixed issue accountcmd & chaincmd | File Modified
This commit is contained in:
parent
7833a10c16
commit
05a7433768
2 changed files with 4 additions and 2 deletions
|
|
@ -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: "<keyFile>",
|
||||
Action: utils.MigrateFlags(importWallet),
|
||||
Category: "ACCOUNT COMMANDS",
|
||||
|
|
|
|||
|
|
@ -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.`,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue