From 06db3c0915f3d921f9477d02226dec304b3bd794 Mon Sep 17 00:00:00 2001 From: Ameesha Agrawal Date: Thu, 18 May 2023 18:18:19 +0530 Subject: [PATCH] fix: uncomment function call --- scripts/deploy/scripts/allPathTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy/scripts/allPathTest.ts b/scripts/deploy/scripts/allPathTest.ts index 867aef8a..aa249628 100644 --- a/scripts/deploy/scripts/allPathTest.ts +++ b/scripts/deploy/scripts/allPathTest.ts @@ -224,7 +224,7 @@ export const sendMessagesToAllPaths = async (params: { const main = async () => { let senderChains = chains; let receiverChains = chains; - // await sendMessagesToAllPaths({ senderChains, receiverChains }); + await sendMessagesToAllPaths({ senderChains, receiverChains }); }; main()