diff --git a/src/app.js b/src/app.js index f6746b7d34..95d852f445 100644 --- a/src/app.js +++ b/src/app.js @@ -236,7 +236,7 @@ Please make a backup of your contracts and start using http://remix.ethereum.org const compilersArtefacts = new CompilersArtefacts() // store all the compilation results (key represent a compiler name) registry.put({api: compilersArtefacts, name: 'compilersartefacts'}) - const {eventsDecoder, txlistener} = makeUdapp(blockchain, udapp, executionContext, compilersArtefacts, (domEl) => mainview.getTerminal().logHtml(domEl)) + const {eventsDecoder, txlistener} = makeUdapp(blockchain, udapp, compilersArtefacts, (domEl) => mainview.getTerminal().logHtml(domEl)) // ----------------- network service (resolve network id / name) ---------------------------- const networkModule = new NetworkModule(executionContext) // ----------------- convert offset to line/column service ---------------------------- diff --git a/src/app/udapp/make-udapp.js b/src/app/udapp/make-udapp.js index 17fda93b9c..150b912780 100644 --- a/src/app/udapp/make-udapp.js +++ b/src/app/udapp/make-udapp.js @@ -18,7 +18,7 @@ function txDetailsLink (network, hash) { } } -export function makeUdapp (blockchain, udapp, executionContext, compilersArtefacts, logHtmlCallback) { +export function makeUdapp (blockchain, udapp, compilersArtefacts, logHtmlCallback) { // ----------------- UniversalDApp ----------------- // TODO: to remove when possible udapp.event.register('transactionBroadcasted', (txhash, networkName) => {