From 1581fb40e0590ced282d0c23b79cb3bdf0f635e7 Mon Sep 17 00:00:00 2001 From: gzeon Date: Thu, 21 Nov 2024 17:48:12 +0800 Subject: [PATCH] chore: remove excessStakeReceiver check --- scripts/boldUpgradeCommon.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/boldUpgradeCommon.ts b/scripts/boldUpgradeCommon.ts index d9e8d450..abe2bd1a 100644 --- a/scripts/boldUpgradeCommon.ts +++ b/scripts/boldUpgradeCommon.ts @@ -97,10 +97,6 @@ export const validateConfig = async ( config: Config, l1Rpc: providers.Provider ) => { - // check all the config.contracts exist - // if ((await l1Rpc.getCode(config.contracts.excessStakeReceiver)).length <= 2) { - // throw new Error('excessStakeReceiver address is not a contract') - // } if ((await l1Rpc.getCode(config.contracts.rollup)).length <= 2) { throw new Error('rollup address is not a contract') }