Skip to content

Commit

Permalink
chore(protocol): fix one typo in deploy_l1 script (#13227)
Browse files Browse the repository at this point in the history
Co-authored-by: David <[email protected]>
  • Loading branch information
alexshliu and davidtaikocha authored Feb 28, 2023
1 parent 0d86d4b commit 20fac4c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/protocol/tasks/deploy_L1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,10 @@ export async function deployContracts(hre: any) {
}

// SignalService
const SignalService = await deploySignalSerive(hre, AddressManager.address);
const SignalService = await deploySignalService(
hre,
AddressManager.address
);

// Used by Bridge
await utils.waitTx(
Expand Down Expand Up @@ -331,7 +334,7 @@ async function deployTokenVault(
return TokenVault;
}

async function deploySignalSerive(
async function deploySignalService(
hre: any,
addressManager: string
): Promise<any> {
Expand Down

0 comments on commit 20fac4c

Please sign in to comment.