Commit 1d5d3760 authored by aniket-engg's avatar aniket-engg

Merge branch 'fix/#1214' of https://github.com/ethereum/remix into fix/#1214

parents f7d95b18 806af11f
...@@ -14,7 +14,7 @@ function TraceManager (options) { ...@@ -14,7 +14,7 @@ function TraceManager (options) {
this.traceCache = new TraceCache() this.traceCache = new TraceCache()
this.traceAnalyser = new TraceAnalyser(this.traceCache) this.traceAnalyser = new TraceAnalyser(this.traceCache)
this.traceRetriever = new TraceRetriever({web3: this.web3}) this.traceRetriever = new TraceRetriever({web3: this.web3})
this.traceStepManager = new TraceStepManager(this.traceAnalyser, {web3: this.web3}) this.traceStepManager = new TraceStepManager(this.traceAnalyser)
this.tx this.tx
} }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
var traceHelper = require('../helpers/traceHelper') var traceHelper = require('../helpers/traceHelper')
var util = require('../util') var util = require('../util')
function TraceStepManager (_traceAnalyser, opts) { function TraceStepManager (_traceAnalyser) {
this.traceAnalyser = _traceAnalyser this.traceAnalyser = _traceAnalyser
} }
......
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