remove unused params

pull/1/head
Iuri Matias 6 years ago
parent ecfd973db4
commit d5c6c7b80c
  1. 4
      src/app/tabs/run-tab.js

@ -17,7 +17,7 @@ var RecorderUI = require('./runTab/recorder.js')
class RunTab { class RunTab {
constructor (opts, localRegistry) { constructor () {
var self = this var self = this
self.event = new EventManager() self.event = new EventManager()
self._view = {} self._view = {}
@ -27,7 +27,7 @@ class RunTab {
another environment. e.g Transactions created in Javascript VM can be replayed in the Injected Web3.` another environment. e.g Transactions created in Javascript VM can be replayed in the Injected Web3.`
} }
self._components = {} self._components = {}
self._components.registry = localRegistry || globalRegistry self._components.registry = globalRegistry
self._components.transactionContextAPI = { self._components.transactionContextAPI = {
getAddress: (cb) => { getAddress: (cb) => {
cb(null, $('#txorigin').val()) cb(null, $('#txorigin').val())

Loading…
Cancel
Save