remove debug artefact

pull/5370/head
yann300 7 years ago
parent 5c51c01dcf
commit 6c60858ff8
  1. 9
      remix-debug/src/Ethdebugger.js
  2. 4
      remix-lib/src/trace/traceManager.js

@ -36,8 +36,8 @@ function Ethdebugger (opts) {
this.opts = opts || {} this.opts = opts || {}
if (!this.opts.compilationResult) this.opts.compilationResult = () => { return null } if (!this.opts.compilationResult) this.opts.compilationResult = () => { return null }
this.executionContext = opts.executionContext || executionContext; this.executionContext = opts.executionContext || executionContext
this.web3 = opts.web3 || this.executionContext.web3; this.web3 = opts.web3 || this.executionContext.web3
this.event = new EventManager() this.event = new EventManager()
@ -56,7 +56,6 @@ function Ethdebugger (opts) {
} }
Ethdebugger.prototype.setManagers = function () { Ethdebugger.prototype.setManagers = function () {
console.log("remix-debug: setManagers");
this.traceManager = new TraceManager({web3: this.web3}) this.traceManager = new TraceManager({web3: this.web3})
this.codeManager = new CodeManager(this.traceManager) this.codeManager = new CodeManager(this.traceManager)
this.solidityProxy = new SolidityProxy(this.traceManager, this.codeManager) this.solidityProxy = new SolidityProxy(this.traceManager, this.codeManager)
@ -200,7 +199,6 @@ Ethdebugger.prototype.switchProvider = function (type) {
} }
Ethdebugger.prototype.debug = function (tx) { Ethdebugger.prototype.debug = function (tx) {
debugger;
this.setCompilationResult(this.opts.compilationResult()) this.setCompilationResult(this.opts.compilationResult())
if (tx instanceof Object) { if (tx instanceof Object) {
this.txBrowser.load(tx.hash) this.txBrowser.load(tx.hash)
@ -226,10 +224,7 @@ Ethdebugger.prototype.debug = function (tx) {
console.log('loading trace...') console.log('loading trace...')
this.tx = tx this.tx = tx
var self = this var self = this
debugger;
this.traceManager.resolveTrace(tx, function (error, result) { this.traceManager.resolveTrace(tx, function (error, result) {
console.log('trace loaded ' + result)
console.dir(arguments);
if (result) { if (result) {
self.event.trigger('newTraceLoaded', [self.traceManager.trace]) self.event.trigger('newTraceLoaded', [self.traceManager.trace])
if (self.breakpointManager && self.breakpointManager.hasBreakpoint()) { if (self.breakpointManager && self.breakpointManager.hasBreakpoint()) {

@ -20,8 +20,6 @@ function TraceManager (options) {
// init section // init section
TraceManager.prototype.resolveTrace = function (tx, callback) { TraceManager.prototype.resolveTrace = function (tx, callback) {
console.dir("resolveTrace: ");
console.dir(arguments);
this.tx = tx this.tx = tx
this.init() this.init()
if (!this.web3) callback('web3 not loaded', false) if (!this.web3) callback('web3 not loaded', false)
@ -70,8 +68,6 @@ TraceManager.prototype.isLoaded = function () {
} }
TraceManager.prototype.getLength = function (callback) { TraceManager.prototype.getLength = function (callback) {
console.dir(this.trace)
console.trace('getLength')
if (!this.trace) { if (!this.trace) {
callback('no trace available', null) callback('no trace available', null)
} else { } else {

Loading…
Cancel
Save