Update chaincmd.go

This commit is contained in:
Felix Lange 2025-03-12 11:36:26 +01:00 committed by GitHub
parent edf4c98978
commit 70fd00ea2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,