mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-17 23:24:39 +00:00
cmd/geth: add ancient datadir flag to snapshot subcommands (#22486)
This commit is contained in:
parent
aae7660410
commit
6387c520b7
1 changed files with 4 additions and 0 deletions
|
|
@ -57,6 +57,7 @@ var (
|
|||
Category: "MISCELLANEOUS COMMANDS",
|
||||
Flags: []cli.Flag{
|
||||
utils.DataDirFlag,
|
||||
utils.AncientFlag,
|
||||
utils.RopstenFlag,
|
||||
utils.RinkebyFlag,
|
||||
utils.GoerliFlag,
|
||||
|
|
@ -86,6 +87,7 @@ the trie clean cache with default directory will be deleted.
|
|||
Category: "MISCELLANEOUS COMMANDS",
|
||||
Flags: []cli.Flag{
|
||||
utils.DataDirFlag,
|
||||
utils.AncientFlag,
|
||||
utils.RopstenFlag,
|
||||
utils.RinkebyFlag,
|
||||
utils.GoerliFlag,
|
||||
|
|
@ -105,6 +107,7 @@ In other words, this command does the snapshot to trie conversion.
|
|||
Category: "MISCELLANEOUS COMMANDS",
|
||||
Flags: []cli.Flag{
|
||||
utils.DataDirFlag,
|
||||
utils.AncientFlag,
|
||||
utils.RopstenFlag,
|
||||
utils.RinkebyFlag,
|
||||
utils.GoerliFlag,
|
||||
|
|
@ -126,6 +129,7 @@ It's also usable without snapshot enabled.
|
|||
Category: "MISCELLANEOUS COMMANDS",
|
||||
Flags: []cli.Flag{
|
||||
utils.DataDirFlag,
|
||||
utils.AncientFlag,
|
||||
utils.RopstenFlag,
|
||||
utils.RinkebyFlag,
|
||||
utils.GoerliFlag,
|
||||
|
|
|
|||
Loading…
Reference in a new issue