Commit 60fd24ec authored by Aniket-Engg's avatar Aniket-Engg

removed consoles

parent ab6d31b8
...@@ -14,7 +14,6 @@ class CompileTab { ...@@ -14,7 +14,6 @@ class CompileTab {
this.queryParams = queryParams this.queryParams = queryParams
this.compilerImport = new CompilerImport() this.compilerImport = new CompilerImport()
this.compiler = new Compiler((url, cb) => this.importFileCb(url, cb)) this.compiler = new Compiler((url, cb) => this.importFileCb(url, cb))
console.log('This is compiler object bro-1-->', this.compiler)
this.fileManager = fileManager this.fileManager = fileManager
this.editor = editor this.editor = editor
this.config = config this.config = config
...@@ -39,14 +38,12 @@ class CompileTab { ...@@ -39,14 +38,12 @@ class CompileTab {
this.optimize = newOptimizeValue this.optimize = newOptimizeValue
this.queryParams.update({ optimize: this.optimize }) this.queryParams.update({ optimize: this.optimize })
this.compiler.set('optimize', this.optimize) this.compiler.set('optimize', this.optimize)
console.log('This is compiler object bro--2->', this.compiler)
} }
setEvmVersion (newEvmVersion) { setEvmVersion (newEvmVersion) {
this.evmVersion = newEvmVersion this.evmVersion = newEvmVersion
this.queryParams.update({ evmVersion: this.evmVersion }) this.queryParams.update({ evmVersion: this.evmVersion })
this.compiler.set('evmVersion', this.evmVersion) this.compiler.set('evmVersion', this.evmVersion)
console.log('This is compiler object bro--3->', this.compiler)
} }
/** /**
......
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