From 36541068490c43b1ebceb1c5018dc44a7c7fccaa Mon Sep 17 00:00:00 2001 From: Max Andreev Date: Sun, 11 Jun 2023 08:59:29 +0000 Subject: [PATCH] use localhost --- tests/src/migrations/942057-appPromotion/collectData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/migrations/942057-appPromotion/collectData.ts b/tests/src/migrations/942057-appPromotion/collectData.ts index 1203a463c7..598549f64e 100644 --- a/tests/src/migrations/942057-appPromotion/collectData.ts +++ b/tests/src/migrations/942057-appPromotion/collectData.ts @@ -10,5 +10,5 @@ export const collectData = () => { const outputPath = path.resolve(dirName, './output.json'); // execSync(`chainql --tla-str=chainUrl=wss://ws-quartz.unique.network:443 ${pathToScript} > ${outputPath}`); // execSync(`chainql --tla-str=chainUrl=ws://127.0.0.1:9944 ${pathToScript} > ${outputPath}`); - exec(`chainql --tla-str=chainUrl=wss://ws-quartz.unique.network:443 ${pathToScript} > ${outputPath}`); + exec(`chainql --tla-str=chainUrl=ws://127.0.0.1:9944 ${pathToScript} > ${outputPath}`); };