eth/downloader: return invalid chain (peer drop) on import fails

This commit is contained in:
Péter Szilágyi 2016-07-11 19:00:49 +03:00
parent 2b94d7fc7f
commit a691aa2a13

View File

@ -1859,7 +1859,7 @@ func (d *Downloader) processContent() error {
}
if err != nil {
glog.V(logger.Debug).Infof("Result #%d [%x…] processing failed: %v", results[index].Header.Number, results[index].Header.Hash().Bytes()[:4], err)
return err
return errInvalidChain
}
// Shift the results to the next batch
results = results[items:]