From 74c1c2dde718277e100ffa999f1f0a2a4aa6f749 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 14 Feb 2024 15:38:41 -0600 Subject: [PATCH] Fix: missing await. --- libs/remix-ws-templates/src/script-templates/sindri/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-ws-templates/src/script-templates/sindri/utils.ts b/libs/remix-ws-templates/src/script-templates/sindri/utils.ts index 21016b6abe..99bc82dea1 100644 --- a/libs/remix-ws-templates/src/script-templates/sindri/utils.ts +++ b/libs/remix-ws-templates/src/script-templates/sindri/utils.ts @@ -67,7 +67,7 @@ export const compile = async (tags: string | string[] | null = ['latest']): Circ const sindriManifest = await getSindriManifest() // Create a map from file paths to `File` objects for all files in the workspace. - const filesByPath = getWorkspaceFilesByPath() + const filesByPath = await getWorkspaceFilesByPath() // Merge any of the circuit's resolved dependencies into the files at their expected import paths. if (sindriManifest.circuitType === 'circom') {