Commit 0fae87f0 authored by yann300's avatar yann300

pass in the compiler name

parent 3a184e96
...@@ -81,7 +81,7 @@ class CompileTab { ...@@ -81,7 +81,7 @@ class CompileTab {
this.compiler.event.register('compilationFinished', (success, data, source) => { this.compiler.event.register('compilationFinished', (success, data, source) => {
if (success) { if (success) {
// forwarding the event to the appManager infra // 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 // Store the contracts
this.data.contractsDetails = {} this.data.contractsDetails = {}
this.compiler.visitContracts((contract) => { this.compiler.visitContracts((contract) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment