Commit d464153c authored by yann300's avatar yann300

bug fix

parent fe7a9a1e
...@@ -123,7 +123,7 @@ web3VmProvider.prototype.pushTrace = function (self, data) { ...@@ -123,7 +123,7 @@ web3VmProvider.prototype.pushTrace = function (self, data) {
this.processingAddress = uiutil.normalizeHex(step.stack[step.stack.length - 2]) this.processingAddress = uiutil.normalizeHex(step.stack[step.stack.length - 2])
if (!self.storageCache[self.processingHash][this.processingAddress]) { if (!self.storageCache[self.processingHash][this.processingAddress]) {
self.vm.stateManager.dumpStorage(this.processingAddress, function (storage) { self.vm.stateManager.dumpStorage(this.processingAddress, function (storage) {
self.storageCache[self.processingHash][this.processingAddress] = storage self.storageCache[self.processingHash][self.processingAddress] = storage
}) })
} }
} }
......
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