go-ethereum/internal/download
Ayush Baluni 1d4657b614 internal/download: distinguish missing file from stale in era download
verifyHash returns an error for both file-not-found (os.Open) and hash
mismatch. DownloadFile previously printed 'is stale' for any error.

Check errors.Is(err, os.ErrNotExist) to distinguish:
- File missing: print 'not found, downloading'
- Hash mismatch: print 'is stale'

Fixes #31917
2026-03-18 11:39:32 +05:30
..
download.go internal/download: distinguish missing file from stale in era download 2026-03-18 11:39:32 +05:30