Commit ae6e4743 authored by serapath's avatar serapath

CompileTab: remove contractNames()

parent ae56070f
...@@ -129,9 +129,6 @@ class CompileTab { ...@@ -129,9 +129,6 @@ class CompileTab {
/* ------------------------------------------------ /* ------------------------------------------------
section CONTRACT DROPDOWN, DETAILS AND PUBLISH section CONTRACT DROPDOWN, DETAILS AND PUBLISH
------------------------------------------------ */ ------------------------------------------------ */
function contractNames (appAPI, appEvents, opts) {
/* eslint-disable */
var contractsDetails = {} var contractsDetails = {}
appEvents.compiler.register('compilationFinished', function (success, data, source) { appEvents.compiler.register('compilationFinished', function (success, data, source) {
...@@ -297,14 +294,11 @@ class CompileTab { ...@@ -297,14 +294,11 @@ class CompileTab {
} }
} }
} }
return contractEl
/* eslint-enable */
}
var el = yo` var el = yo`
<div class="${css.compileTabView}" id="compileTabView"> <div class="${css.compileTabView}" id="compileTabView">
${compileContainer} ${compileContainer}
${contractNames(appAPI, appEvents, opts)} ${contractEl}
${errorContainer} ${errorContainer}
</div> </div>
` `
......
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