From 82f27186cf5a453a92be83153d3ebd583a597877 Mon Sep 17 00:00:00 2001 From: cartcrom <39385577+cartcrom@users.noreply.github.com> Date: Thu, 9 Nov 2023 18:43:10 -0500 Subject: [PATCH] test: update hardhat blocknumber (#7559) * init * fix: remove console log * fix: add comment --- hardhat.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hardhat.config.js b/hardhat.config.js index ce70899f22..6cdade8010 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -13,7 +13,8 @@ const forkingConfig = { const forks = { [ChainId.MAINNET]: { url: `https://mainnet.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, - blockNumber: UNIVERSAL_ROUTER_CREATION_BLOCK(ChainId.MAINNET), + // Temporarily hardcoding this to fix e2e tests as we investigate source of swap tests failing on older blocknumbers + blockNumber: 18537387, ...forkingConfig, }, [ChainId.POLYGON]: {