Merge pull request #22122 from karalabe/snapshot-polishes

cmd/utils, eth/downloader: minor snap nitpicks
pull/22136/head
Péter Szilágyi 4 years ago committed by GitHub
commit 8bd8e1b24a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      cmd/utils/flags.go
  2. 4
      eth/downloader/downloader.go

@ -1568,7 +1568,6 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *eth.Config) {
// If snap-sync is requested, this flag is also required
if cfg.SyncMode == downloader.SnapSync {
log.Info("Snap sync requested, enabling --snapshot")
ctx.Set(SnapshotFlag.Name, "true")
} else {
cfg.TrieCleanCache += cfg.SnapshotCache
cfg.SnapshotCache = 0 // Disabled

@ -89,7 +89,7 @@ var (
errCancelContentProcessing = errors.New("content processing canceled (requested)")
errCanceled = errors.New("syncing canceled (requested)")
errNoSyncActive = errors.New("no sync active")
errTooOld = errors.New("peer doesn't speak recent enough protocol version (need version >= 64)")
errTooOld = errors.New("peer's protocol version too old")
)
type Downloader struct {
@ -460,7 +460,7 @@ func (d *Downloader) syncWithPeer(p *peerConnection, hash common.Hash, td *big.I
}
}()
if p.version < 64 {
return fmt.Errorf("%w, peer version: %d", errTooOld, p.version)
return fmt.Errorf("%w: advertized %d < required %d", errTooOld, p.version, 64)
}
mode := d.getMode()

Loading…
Cancel
Save