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

pull/7/head
aniket-engg 5 years ago
commit 1d5d3760a2
  1. 2
      remix-lib/src/trace/traceManager.js
  2. 2
      remix-lib/src/trace/traceStepManager.js

@ -14,7 +14,7 @@ function TraceManager (options) {
this.traceCache = new TraceCache()
this.traceAnalyser = new TraceAnalyser(this.traceCache)
this.traceRetriever = new TraceRetriever({web3: this.web3})
this.traceStepManager = new TraceStepManager(this.traceAnalyser, {web3: this.web3})
this.traceStepManager = new TraceStepManager(this.traceAnalyser)
this.tx
}

@ -3,7 +3,7 @@
var traceHelper = require('../helpers/traceHelper')
var util = require('../util')
function TraceStepManager (_traceAnalyser, opts) {
function TraceStepManager (_traceAnalyser) {
this.traceAnalyser = _traceAnalyser
}

Loading…
Cancel
Save