Commit 0f530cf7 authored by yann300's avatar yann300

remove debug artefact

parent 96b82178
......@@ -36,8 +36,8 @@ function Ethdebugger (opts) {
this.opts = opts || {}
if (!this.opts.compilationResult) this.opts.compilationResult = () => { return null }
this.executionContext = opts.executionContext || executionContext;
this.web3 = opts.web3 || this.executionContext.web3;
this.executionContext = opts.executionContext || executionContext
this.web3 = opts.web3 || this.executionContext.web3
this.event = new EventManager()
......@@ -56,7 +56,6 @@ function Ethdebugger (opts) {
}
Ethdebugger.prototype.setManagers = function () {
console.log("remix-debug: setManagers");
this.traceManager = new TraceManager({web3: this.web3})
this.codeManager = new CodeManager(this.traceManager)
this.solidityProxy = new SolidityProxy(this.traceManager, this.codeManager)
......@@ -200,7 +199,6 @@ Ethdebugger.prototype.switchProvider = function (type) {
}
Ethdebugger.prototype.debug = function (tx) {
debugger;
this.setCompilationResult(this.opts.compilationResult())
if (tx instanceof Object) {
this.txBrowser.load(tx.hash)
......@@ -226,10 +224,7 @@ Ethdebugger.prototype.debug = function (tx) {
console.log('loading trace...')
this.tx = tx
var self = this
debugger;
this.traceManager.resolveTrace(tx, function (error, result) {
console.log('trace loaded ' + result)
console.dir(arguments);
if (result) {
self.event.trigger('newTraceLoaded', [self.traceManager.trace])
if (self.breakpointManager && self.breakpointManager.hasBreakpoint()) {
......
......@@ -20,8 +20,6 @@ function TraceManager (options) {
// init section
TraceManager.prototype.resolveTrace = function (tx, callback) {
console.dir("resolveTrace: ");
console.dir(arguments);
this.tx = tx
this.init()
if (!this.web3) callback('web3 not loaded', false)
......@@ -70,8 +68,6 @@ TraceManager.prototype.isLoaded = function () {
}
TraceManager.prototype.getLength = function (callback) {
console.dir(this.trace)
console.trace('getLength')
if (!this.trace) {
callback('no trace available', null)
} else {
......
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