Commit b3e68cd4 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #527 from ethereum/newStorageScheme

Remove hashedKey from storage value
parents 2c03f8ba 2936bf38
...@@ -42,7 +42,6 @@ class StateManagerCommonStorageDump extends StateManager { ...@@ -42,7 +42,6 @@ class StateManagerCommonStorageDump extends StateManager {
var stream = trie.createReadStream() var stream = trie.createReadStream()
stream.on('data', function (val) { stream.on('data', function (val) {
storage['0x' + val.key.toString('hex')] = { storage['0x' + val.key.toString('hex')] = {
hashedKey: '0x' + val.key.toString('hex'),
key: self.keyHashes[val.key.toString('hex')], key: self.keyHashes[val.key.toString('hex')],
value: '0x' + val.value.toString('hex') value: '0x' + val.value.toString('hex')
} }
......
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