cmd/geth: add holesky chain for cmd import history

Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
jsvisa 2025-03-06 08:21:28 +00:00
parent 659192230a
commit 8a1b989b26

View file

@ -424,6 +424,8 @@ func importHistory(ctx *cli.Context) error {
network = "mainnet" network = "mainnet"
case ctx.Bool(utils.SepoliaFlag.Name): case ctx.Bool(utils.SepoliaFlag.Name):
network = "sepolia" network = "sepolia"
case ctx.Bool(utils.HoleskyFlag.Name):
network = "holesky"
} }
} else { } else {
// No network flag set, try to determine network based on files // No network flag set, try to determine network based on files