Commit d5b9f6a6 authored by yann300's avatar yann300

remove console.log

parent 0f530cf7
...@@ -5,8 +5,6 @@ function TraceRetriever (options) { ...@@ -5,8 +5,6 @@ function TraceRetriever (options) {
} }
TraceRetriever.prototype.getTrace = function (txHash, callback) { TraceRetriever.prototype.getTrace = function (txHash, callback) {
console.dir("getTrace: ");
console.dir(arguments);
var options = { var options = {
disableStorage: true, disableStorage: true,
disableMemory: false, disableMemory: false,
......
...@@ -198,9 +198,6 @@ web3VmProvider.prototype.getCode = function (address, cb) { ...@@ -198,9 +198,6 @@ web3VmProvider.prototype.getCode = function (address, cb) {
web3VmProvider.prototype.setProvider = function (provider) {} web3VmProvider.prototype.setProvider = function (provider) {}
web3VmProvider.prototype.traceTransaction = function (txHash, options, cb) { web3VmProvider.prototype.traceTransaction = function (txHash, options, cb) {
console.dir("traceTransaction: ");
console.dir(arguments);
console.trace("here");
if (this.vmTraces[txHash]) { if (this.vmTraces[txHash]) {
if (cb) { if (cb) {
cb(null, this.vmTraces[txHash]) cb(null, this.vmTraces[txHash])
......
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