From 0fae87f0842cb8f984ab34845e2222a3922e622e Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 5 Mar 2019 10:51:33 +0100 Subject: [PATCH] pass in the compiler name --- src/app/tabs/compile-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/compile-tab.js b/src/app/tabs/compile-tab.js index bd2f052271..6fc7c859c1 100644 --- a/src/app/tabs/compile-tab.js +++ b/src/app/tabs/compile-tab.js @@ -81,7 +81,7 @@ class CompileTab { this.compiler.event.register('compilationFinished', (success, data, source) => { if (success) { // forwarding the event to the appManager infra - this.events.emit('compilationFinished', source.target, source, this.compilerContainer.data.selectedVersion, data) + this.events.emit('compilationFinished', source.target, source, 'soljson', data) // Store the contracts this.data.contractsDetails = {} this.compiler.visitContracts((contract) => {