Skip to content

Commit

Permalink
fix create2Calldata statelib
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroga committed Jan 24, 2025
1 parent bc22c56 commit 6ea8563
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export const contractsInfo = Object.freeze({
STATE_LIB: {
name: "StateLib",
unifiedAddress: "",
create2Address: "",
create2Calldata: "",
verificationOpts: {
constructorArgsImplementation: [],
libraries: {},
Expand Down
5 changes: 1 addition & 4 deletions test/check-unified-addresses.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 6ea8563

Please sign in to comment.