Commit c4d47ebd authored by Iuri Matias's avatar Iuri Matias

add missing config param

parent b2d914c7
......@@ -10,10 +10,11 @@ var confirmDialog = require('../../ui/confirmDialog')
class RecorderUI {
constructor (blockchain, recorder, logCallBack) {
constructor (blockchain, recorder, logCallBack, config) {
this.blockchain = blockchain
this.recorder = recorder
this.logCallBack = logCallBack
this.config = config
this.event = new EventManager()
}
......
......@@ -159,7 +159,7 @@ export class RunTab extends LibraryPlugin {
})
this.event.register('clearInstance', recorder.clearAll.bind(recorder))
this.recorderInterface = new RecorderUI(this.blockchain, recorder, logCallback)
this.recorderInterface = new RecorderUI(this.blockchain, recorder, logCallback, config)
this.recorderInterface.event.register('newScenario', (abi, address, contractName) => {
var noInstancesText = this.noInstancesText
......
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