Skip to content

Commit

Permalink
Fix e2e in params
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Mar 18, 2023
1 parent cbf9111 commit afb2122
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/params/test/e2e/ensure-config-is-synced.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@ async function downloadRemoteConfig(preset: "mainnet" | "minimal", commit: strin
const downloadedParams = await Promise.all(
Object.values(ForkName).map((forkName) =>
axios({
url: `https://github.com/raw/ethereum/consensus-specs/${commit}/presets/${preset}/${
// TODO eip4844: clean this up when specs are released with deneb
forkName === "deneb" ? "eip4844" : forkName
}.yaml`,
url: `https://github.com/raw/ethereum/consensus-specs/${commit}/presets/${preset}/${forkName}.yaml`,
timeout: 30 * 1000,
}).then((response) => loadConfigYaml(response.data))
)
Expand Down

0 comments on commit afb2122

Please sign in to comment.