Merge pull request #1966 from karalabe/fix-recover-noparam-panic

cmd/geth: fix recover command crash if no param is supplied
This commit is contained in:
Felix Lange 2015-11-05 13:15:23 +01:00
commit 76390ef892
1 changed files with 2 additions and 2 deletions

View File

@ -542,10 +542,10 @@ func unlockAccount(ctx *cli.Context, am *accounts.Manager, addr string, i int, i
func blockRecovery(ctx *cli.Context) {
utils.CheckLegalese(utils.MustDataDir(ctx))
arg := ctx.Args().First()
if len(ctx.Args()) < 1 && len(arg) > 0 {
if len(ctx.Args()) < 1 {
glog.Fatal("recover requires block number or hash")
}
arg := ctx.Args().First()
cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
utils.CheckLegalese(cfg.DataDir)