cmd/geth: remove outdated comment

This commit is contained in:
Martin Holst Swende 2023-11-28 09:59:41 +01:00
parent 016678e120
commit b77ff88ef2
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -495,11 +495,6 @@ func dump(ctx *cli.Context) error {
if ctx.Bool(utils.IterativeOutputFlag.Name) {
state.IterativeDump(conf, json.NewEncoder(os.Stdout))
} else {
if conf.OnlyWithAddresses {
fmt.Fprintf(os.Stderr, "If you want to include accounts with missing preimages, you need iterative output, since"+
" otherwise the accounts will overwrite each other in the resulting mapping.")
return errors.New("incompatible options")
}
fmt.Println(string(state.Dump(conf)))
}
return nil