Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshaagrawal committed Oct 12, 2023
1 parent 9ba9f87 commit 409ae78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deployments/dev_addresses.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"FastSwitchboard2": "0x6c2Bd8f6C35C54B9C7D7f12F89c22808C8b6b8FA",
"OptimisticSwitchboard": "0xEaF2379d53f039c3f18A856B36c2b67a523F4Ceb",
"SocketBatcher": "0x5B8AF754b3A6abb49600900af28200a52a75d62F",
"Counter": "0x0140bd943F0346f87b5Ead2633eA492A50c92CeB",
"Counter": "0x0140bd943F0346f87b5Ead2633eA492A50c92CeB"
},
"1399904803": {
"SignatureVerifier": "0x47140353947Bc127c9cf36fabd61112C8Fb8db2A",
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy/scripts/deploySwitchboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default async function deploySwitchboards(
for (let index = 0; index < siblings.length; index++) {
if (
!updatedConfig?.integrations?.[siblings[index]]?.[
IntegrationTypes.native
IntegrationTypes.native
]?.["switchboard"]
) {
updatedConfig = await deploySwitchboard(
Expand Down
5 changes: 4 additions & 1 deletion scripts/deploy/switchboards/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export const getSwitchboardDeployData = (
sigVerifierAddress: string,
signerAddress: string
) => {
if (integrationType === IntegrationTypes.fast || integrationType === IntegrationTypes.fast2) {
if (
integrationType === IntegrationTypes.fast ||
integrationType === IntegrationTypes.fast2
) {
return fastSwitchboard(
localChain,
socketAddress,
Expand Down

0 comments on commit 409ae78

Please sign in to comment.