CompileTab: remove contractNames()

pull/1/head
serapath 7 years ago
parent ae56070f90
commit ae6e474378
  1. 8
      src/app/tabs/compile-tab.js

@ -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 {
} }
} }
} }
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>
` `

Loading…
Cancel
Save