From c1ae012a6bec80da6ea7ae7651b047cbe9052783 Mon Sep 17 00:00:00 2001 From: Prathmesh <201952225@iiitvadodara.ac.in> Date: Tue, 29 Aug 2023 14:04:57 +0530 Subject: [PATCH] fix: include all chains --- packages/deployments/contracts/src/cli/init/helpers/assets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/deployments/contracts/src/cli/init/helpers/assets.ts b/packages/deployments/contracts/src/cli/init/helpers/assets.ts index 82f63822b5..8d476efa79 100644 --- a/packages/deployments/contracts/src/cli/init/helpers/assets.ts +++ b/packages/deployments/contracts/src/cli/init/helpers/assets.ts @@ -81,7 +81,7 @@ export const setupAsset = async (args: { // Set up all the representational assets on their respective domains. for (const [domain, representation] of Object.entries(asset.representations)) { - if (!representation) return; + if (!representation) continue; const stableswapPool = constants.AddressZero; const network = networks.find((n) => n.domain === domain);