Skip to content

Commit

Permalink
fix: remove temp code
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshaagrawal committed Jun 29, 2024
1 parent 79c6ec7 commit 50d4658
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions scripts/deploy/em-migration/migrate-em.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,6 @@ const deleteOldContracts = async (chains: ChainSlug[]) => {
}
};

const deploySimulators = async (chains: ChainSlug[]) => {
try {
await deployForChains(chains, emVersion);
} catch (error) {
console.log("Error:", error);
}
};

const deploy = async (chains: ChainSlug[]) => {
try {
const addresses: DeploymentAddresses = await deployForChains(
Expand Down Expand Up @@ -165,10 +157,6 @@ const main = async () => {
title: "Delete",
value: "delete",
},
{
title: "DeploySimulators",
value: "DeploySimulators",
},
],
},
{
Expand Down Expand Up @@ -216,9 +204,6 @@ const main = async () => {
case "delete":
await deleteOldContracts(chains);
break;
case "DeploySimulators":
await deploySimulators(chains);
break;
case "exit":
process.exit(0);
}
Expand Down

0 comments on commit 50d4658

Please sign in to comment.