Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshaagrawal committed Jun 18, 2024
1 parent 1ea7658 commit 53b9173
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scripts/deploy/migrate-em.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { configureRoles } from "./scripts/configureRoles";
import { deployForChains } from "./scripts/deploySocketFor";

const deploy = async () => {
try {
const chains = [];
const addresses: DeploymentAddresses = await deployForChains(chains);
await configureRoles(addresses, chains, true);
} catch (error) {
console.log("Error:", error);
}
try {
const chains = [];
const addresses: DeploymentAddresses = await deployForChains(chains);
await configureRoles(addresses, chains, true);
} catch (error) {
console.log("Error:", error);
}
};

deploy();
deploy();

0 comments on commit 53b9173

Please sign in to comment.