From f434ad1871fff6f6be1809f6fd5aef2a16228b5e Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Thu, 24 Feb 2022 20:31:27 +0530 Subject: [PATCH] added missed params --- libs/remix-solidity/src/compiler/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-solidity/src/compiler/compiler.ts b/libs/remix-solidity/src/compiler/compiler.ts index 428ff5a765..62172c0a8a 100644 --- a/libs/remix-solidity/src/compiler/compiler.ts +++ b/libs/remix-solidity/src/compiler/compiler.ts @@ -148,7 +148,7 @@ export class Compiler { if (!noFatalErrors) { // There are fatal errors, abort here this.state.lastCompilationResult = null - this.event.trigger('compilationFinished', [false, data, source]) + this.event.trigger('compilationFinished', [false, data, source, input, version]) } else if (missingInputs !== undefined && missingInputs.length > 0 && source && source.sources) { // try compiling again with the new set of inputs this.internalCompile(source.sources, missingInputs)