From cbbf0f5fe986208f397f8106b12262370139194f Mon Sep 17 00:00:00 2001 From: Ameesha Agrawal Date: Thu, 23 Nov 2023 20:35:14 +0530 Subject: [PATCH] fix: lint --- .../single-click-deploy/integrators/writeConfigs.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/scripts/deploy/single-click-deploy/integrators/writeConfigs.ts b/scripts/deploy/single-click-deploy/integrators/writeConfigs.ts index 5d6e04af..faaae973 100644 --- a/scripts/deploy/single-click-deploy/integrators/writeConfigs.ts +++ b/scripts/deploy/single-click-deploy/integrators/writeConfigs.ts @@ -27,7 +27,8 @@ export async function writeConfigs() { { name: "chainName", type: "text", - message: "Enter chain name (without spaces, use underscore instead of spaces)", + message: + "Enter chain name (without spaces, use underscore instead of spaces)", }, { name: "isMainnet", @@ -178,11 +179,7 @@ export async function writeConfigs() { if (configResponse.pk && configResponse.pk.length > 64) pk = configResponse.pk.substring(2); - await buildEnvFile( - response.rpc, - roleOwners.ownerAddress, - pk - ); + await buildEnvFile(response.rpc, roleOwners.ownerAddress, pk); } const validateRpc = async (rpcUrl: string) => {