From a41909c3e6e1d6eac05a0813cc389cfe75dbbae3 Mon Sep 17 00:00:00 2001 From: thomas-waite Date: Fri, 6 May 2022 12:52:15 +0100 Subject: [PATCH 1/2] feat: update proposalId --- test/integration/proposals_config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/proposals_config.ts b/test/integration/proposals_config.ts index c50af56c3..b20940e54 100644 --- a/test/integration/proposals_config.ts +++ b/test/integration/proposals_config.ts @@ -20,7 +20,7 @@ const proposals: ProposalsConfigMap = { deploy: false, // deploy flag for whether to run deploy action during e2e tests or use mainnet state totalValue: 0, // amount of ETH to send to DAO execution proposal: fip_82b, - proposalId: '', + proposalId: '100114570810112501972314307970004446869175784368342294400079771147860837319881', affectedContractSignoff: [ 'core', 'fuseGuardian', From e5e54b3da264438063fd09eae8fa528ba4342d50 Mon Sep 17 00:00:00 2001 From: thomas-waite Date: Fri, 6 May 2022 13:00:19 +0100 Subject: [PATCH 2/2] deps: update block number --- hardhat.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 65d68c995..1831a6987 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -57,7 +57,7 @@ export default { forking: enableMainnetForking ? { url: `https://eth-mainnet.alchemyapi.io/v2/${mainnetAlchemyApiKey}`, - blockNumber: 14714028 // Thursday, May 5th + blockNumber: 14723389 // Friday, May 6th } : undefined },