From 6ea8563b6a667a2705b6e1b469b647f44638edde Mon Sep 17 00:00:00 2001 From: daveroga Date: Fri, 24 Jan 2025 17:51:51 +0100 Subject: [PATCH] fix create2Calldata statelib --- helpers/constants.ts | 2 +- test/check-unified-addresses.test.ts | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/helpers/constants.ts b/helpers/constants.ts index 55e8ef53..1c76c4b0 100644 --- a/helpers/constants.ts +++ b/helpers/constants.ts @@ -384,7 +384,7 @@ export const contractsInfo = Object.freeze({ STATE_LIB: { name: "StateLib", unifiedAddress: "", - create2Address: "", + create2Calldata: "", verificationOpts: { constructorArgsImplementation: [], libraries: {}, diff --git a/test/check-unified-addresses.test.ts b/test/check-unified-addresses.test.ts index 596e3aae..75b9f833 100644 --- a/test/check-unified-addresses.test.ts +++ b/test/check-unified-addresses.test.ts @@ -46,10 +46,7 @@ it("Calculate and check unified addresses for proxy contracts", async () => { await ignition.deploy(Create2AddressAnchorModule, { strategy: "create2" }); for (const property in contractsInfo) { - if ( - contractsInfo[property].unifiedAddress !== "" && - contractsInfo[property].create2Calldata !== "" - ) { + if (contractsInfo[property].create2Calldata !== "") { const proxyDeployed = ( await ignition.deploy(GeneralProxyModule, { strategy: "create2",