Commit 14e13ac8 authored by yann300's avatar yann300

renaming

parent 037676b2
...@@ -80,7 +80,7 @@ function resolveAddress (self, stepIndex, callback) { ...@@ -80,7 +80,7 @@ function resolveAddress (self, stepIndex, callback) {
}) })
} }
function storageRangeAtInternal (tx, address, start, maxSize, callback) { function storageRangeWeb3Call (tx, address, start, maxSize, callback) {
util.web3.debug.storageRangeAt( util.web3.debug.storageRangeAt(
tx.blockHash, tx.transactionIndex === undefined ? tx.hash : tx.transactionIndex, tx.blockHash, tx.transactionIndex === undefined ? tx.hash : tx.transactionIndex,
address, address,
...@@ -112,7 +112,7 @@ function storageRangeInternal (self, start, maxSize, tx, stepIndex, callback) { ...@@ -112,7 +112,7 @@ function storageRangeInternal (self, start, maxSize, tx, stepIndex, callback) {
var cached = fromCache(self, address) var cached = fromCache(self, address)
self.accumulateStorageChanges(stepIndex, address, cached, callback) self.accumulateStorageChanges(stepIndex, address, cached, callback)
} else { } else {
storageRangeAtInternal(tx, address, start, maxSize, (error, storage, complete) => { storageRangeWeb3Call(tx, address, start, maxSize, (error, storage, complete) => {
if (error) { if (error) {
callback(error) callback(error)
} else { } else {
......
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