From f0128b48ff77a710d18d8aad37389f5dce0b57b4 Mon Sep 17 00:00:00 2001 From: rymnc <43716372+rymnc@users.noreply.github.com> Date: Fri, 2 Dec 2022 18:01:49 +0530 Subject: [PATCH] fix: name of env var --- e2e/e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/e2e.ts b/e2e/e2e.ts index eb4b01d..78fa2ca 100644 --- a/e2e/e2e.ts +++ b/e2e/e2e.ts @@ -16,7 +16,7 @@ dotenv.config(); // Interep has not updated their verifiers, so the proof generated by createProof will not work :( Have raised the issue with their team async function main() { if (!process.env.PRIVATE_KEY_TO_GENERATE_SECRET) { - throw new Error("ACTUAL_PK not set"); + throw new Error("PRIVATE_KEY_TO_GENERATE_SECRET not set"); } if (!process.env.PRIVATE_KEY) { throw new Error("PRIVATE_KEY not set");