cli: return proper error on block import fail

This commit is contained in:
Evgenii Stratonikov 2020-09-15 12:03:10 +03:00
parent 5703c4859b
commit 916603d495

View file

@ -272,7 +272,7 @@ func restoreDB(ctx *cli.Context) error {
dumpSize = reader.ReadU32LE() dumpSize = reader.ReadU32LE()
} }
if reader.Err != nil { if reader.Err != nil {
return cli.NewExitError(err, 1) return cli.NewExitError(reader.Err, 1)
} }
if start < dumpStart { if start < dumpStart {
return cli.NewExitError(fmt.Errorf("input file start from %d block, can't import %d", dumpStart, start), 1) return cli.NewExitError(fmt.Errorf("input file start from %d block, can't import %d", dumpStart, start), 1)