mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
Update chaincmd.go
This commit is contained in:
parent
edf4c98978
commit
70fd00ea2d
1 changed files with 4 additions and 7 deletions
|
|
@ -104,14 +104,11 @@ if one is set. Otherwise it prints the genesis from the datadir.`,
|
||||||
}, utils.DatabaseFlags),
|
}, utils.DatabaseFlags),
|
||||||
Description: `
|
Description: `
|
||||||
The import command allows the import of blocks from an RLP-encoded format. This format can be a single file
|
The import command allows the import of blocks from an RLP-encoded format. This format can be a single file
|
||||||
containing multiple RLP-encoded blocks, or multiple files can be utilized.
|
containing multiple RLP-encoded blocks, or multiple files can be given.
|
||||||
|
|
||||||
If only one file is used, an import error will result in the entire import process failing. Conversely, if
|
If only one file is used, an import error will result in the entire import process failing. If
|
||||||
multiple files are employed, the import process will continue even if an individual RLP file fails to import
|
multiple files are processed, the import process will continue even if an individual RLP file fails
|
||||||
successfully.
|
to import successfully.`,
|
||||||
|
|
||||||
The import command will batch-import 2500 blocks into the database at a time. The import process can be
|
|
||||||
interrupted using Ctrl-C, and it will halt at the end of the current batch.`,
|
|
||||||
}
|
}
|
||||||
exportCommand = &cli.Command{
|
exportCommand = &cli.Command{
|
||||||
Action: exportChain,
|
Action: exportChain,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue