cmd/geth, eth: move --genesis deprecation warning to cmd/geth

This prevents display of the warning for --dev and --olympic.
This commit is contained in:
Felix Lange
2016-04-01 21:55:30 +02:00
parent 78b70d79ec
commit cf842b3fe5
2 changed files with 6 additions and 4 deletions

View File

@ -359,6 +359,12 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
go metrics.CollectProcessMetrics(3 * time.Second)
utils.SetupNetwork(ctx)
// Deprecation warning.
if ctx.GlobalIsSet(utils.GenesisFileFlag.Name) {
common.PrintDepricationWarning("--genesis is deprecated. Switch to use 'geth init /path/to/file'")
}
return nil
}