remove unused args

pull/5370/head
ioedeveloper 11 months ago committed by Aniket
parent db91eb666f
commit 5ba5f54155
  1. 2
      apps/circuit-compiler/src/app/services/circomPluginClient.ts

@ -53,7 +53,7 @@ export class CircomPluginClient extends PluginClient {
// @ts-ignore
fileContent = await this.call('fileManager', 'readFile', path)
}
this.lastParsedFiles = await this.resolveDependencies(path, fileContent, { [path]: { content: fileContent, parent: null } })
this.lastParsedFiles = await this.resolveDependencies(path, fileContent)
const parsedOutput = this.compiler.parse(path, this.lastParsedFiles)
try {

Loading…
Cancel
Save