From a0b711643aa183eb5a87bafedde9b6fdda647fef Mon Sep 17 00:00:00 2001 From: Ethan Date: Thu, 10 Oct 2024 09:59:36 +0800 Subject: [PATCH] fix: ci check for compare bytecodes --- scripts/check-bsc-hardfork-bytecode.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-bsc-hardfork-bytecode.ts b/scripts/check-bsc-hardfork-bytecode.ts index 69be3a8d..235f443f 100644 --- a/scripts/check-bsc-hardfork-bytecode.ts +++ b/scripts/check-bsc-hardfork-bytecode.ts @@ -14,7 +14,7 @@ const SLASH_CONTRACT_ADDR = '0x0000000000000000000000000000000000001001'; contractNameMap[SLASH_CONTRACT_ADDR] = 'SlashContract' const SYSTEM_REWARD_ADDR = '0x0000000000000000000000000000000000001002'; -contractNameMap[SYSTEM_REWARD_ADDR] = 'SystemContract' +contractNameMap[SYSTEM_REWARD_ADDR] = 'SystemRewardContract' const LIGHT_CLIENT_ADDR = '0x0000000000000000000000000000000000001003'; contractNameMap[LIGHT_CLIENT_ADDR] = 'LightClientContract' @@ -56,7 +56,7 @@ const TIMELOCK_ADDR = '0x0000000000000000000000000000000000002006'; contractNameMap[TIMELOCK_ADDR] = 'TimelockContract' const TOKEN_RECOVER_PORTAL_ADDR = '0x0000000000000000000000000000000000003000'; -contractNameMap[TOKEN_RECOVER_PORTAL_ADDR] = 'TokenRecoverContract' +contractNameMap[TOKEN_RECOVER_PORTAL_ADDR] = 'TokenRecoverPortalContract' let hardforkName = process.env.HARDFORK let bscUrl = process.env.BSC_URL