mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +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 (
|
var (
|
||||||
walletCommand = cli.Command{
|
walletCommand = cli.Command{
|
||||||
Name: "wallet",
|
Name: "wallet",
|
||||||
Usage: "Manage Ethereum presale wallets",
|
Usage: "Manage XDCchain presale wallets",
|
||||||
ArgsUsage: "",
|
ArgsUsage: "",
|
||||||
Category: "ACCOUNT COMMANDS",
|
Category: "ACCOUNT COMMANDS",
|
||||||
Description: `
|
Description: `
|
||||||
|
|
@ -45,7 +45,7 @@ passwordfile as argument containing the wallet password in plaintext.`,
|
||||||
{
|
{
|
||||||
|
|
||||||
Name: "import",
|
Name: "import",
|
||||||
Usage: "Import Ethereum presale wallet",
|
Usage: "Import XDCchain presale wallet",
|
||||||
ArgsUsage: "<keyFile>",
|
ArgsUsage: "<keyFile>",
|
||||||
Action: utils.MigrateFlags(importWallet),
|
Action: utils.MigrateFlags(importWallet),
|
||||||
Category: "ACCOUNT COMMANDS",
|
Category: "ACCOUNT COMMANDS",
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,7 @@ var (
|
||||||
The init command initializes a new genesis block and definition for the network.
|
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
|
This is a destructive action and changes the network in which you will be
|
||||||
participating.
|
participating.
|
||||||
|
|
||||||
It expects the genesis file as argument.`,
|
It expects the genesis file as argument.`,
|
||||||
}
|
}
|
||||||
importCommand = cli.Command{
|
importCommand = cli.Command{
|
||||||
|
|
@ -74,6 +75,7 @@ It expects the genesis file as argument.`,
|
||||||
Description: `
|
Description: `
|
||||||
The import command imports blocks from an RLP-encoded form. The form can be one file
|
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.
|
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,
|
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.`,
|
processing will proceed even if an individual RLP-file import failure occurs.`,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue