remove console.log

pull/7/head
yann300 7 years ago
parent 0f530cf761
commit d5b9f6a67e
  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