remove console.log

pull/5370/head
yann300 7 years ago
parent 6c60858ff8
commit 4657d7fb26
  1. 2
      remix-lib/src/trace/traceRetriever.js
  2. 3
      remix-lib/src/web3Provider/web3VmProvider.js

@ -5,8 +5,6 @@ function TraceRetriever (options) {
}
TraceRetriever.prototype.getTrace = function (txHash, callback) {
console.dir("getTrace: ");
console.dir(arguments);
var options = {
disableStorage: true,
disableMemory: false,

@ -198,9 +198,6 @@ web3VmProvider.prototype.getCode = function (address, cb) {
web3VmProvider.prototype.setProvider = function (provider) {}
web3VmProvider.prototype.traceTransaction = function (txHash, options, cb) {
console.dir("traceTransaction: ");
console.dir(arguments);
console.trace("here");
if (this.vmTraces[txHash]) {
if (cb) {
cb(null, this.vmTraces[txHash])

Loading…
Cancel
Save