This commit is contained in:
Sina Mahmoodi 2025-02-05 12:13:13 +01:00
parent b1e784195a
commit 3ed2d35890

View file

@ -339,7 +339,7 @@ func downloadSpecTestFixtures(csdb *build.ChecksumDB, cachedir string) string {
}
ext := ".tar.gz"
base := "fixtures_pectra-devnet-6" // TODO(s1na) rename once the version becomes part of the filename
url := fmt.Sprintf("https://github.com/ethereum/execution-spec-tests/releases/download/v%s/%s%s", executionSpecTestsVersion, base, ext)
url := fmt.Sprintf("https://github.com/ethereum/execution-spec-tests/releases/download/%s/%s%s", executionSpecTestsVersion, base, ext)
archivePath := filepath.Join(cachedir, base+ext)
if err := csdb.DownloadFile(url, archivePath); err != nil {
log.Fatal(err)