From 0c064f6709c93e09ae64b8ca87052290cad94c31 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 15 Mar 2017 10:31:44 +0100 Subject: [PATCH] fix vm provider --- src/web3Provider/web3VmProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web3Provider/web3VmProvider.js b/src/web3Provider/web3VmProvider.js index 41746918c2..88f7769d87 100644 --- a/src/web3Provider/web3VmProvider.js +++ b/src/web3Provider/web3VmProvider.js @@ -153,7 +153,7 @@ web3VmProvider.prototype.traceTransaction = function (txHash, options, cb) { } } -web3VmProvider.prototype.storageRangeAt = function (blockNumber, txIndex, address, start, end, maxLength, cb) { // txIndex is the hash in the case of the VM +web3VmProvider.prototype.storageRangeAt = function (blockNumber, txIndex, address, start, maxLength, cb) { // txIndex is the hash in the case of the VM // we don't use the range params here if (this.storageCache[txIndex] && this.storageCache[txIndex][address]) { var storage = this.storageCache[txIndex][address]